@KaiHalpin
Please follow the below approach:

Code:
Variables.CreateNewDatatable InputTable: { ^['Column1', 'Column2'], [$'''Metered Raye''', $''':1000'''], [$'''Tubing Pressure''', $''':495'''], [$'''Mechanical Loss''', $''''''], [$'''Interval Type: Interval %% Loss Remarks''', $''''''], [$'''______________________________________''', $''''''], [$'''1420 - 1503 PERI 1450 - 1490 77%%''', $''''''], [$'''1580 - 1561 PERI 15200 - 1561 23%%''', $''''''], [$'''Lower B''', $''''''], [$'''______________________________________''', $''''''], [$'''Metered Rate''', $''':650 B/D'''], [$'''Tubbing Pressure''', $''':570 PSI'''] } DataTable=> DataTable
Variables.FindOrReplaceInDataTable.FindItemInDataTableByColumnIndex DataTable: DataTable AllMatches: True ValueToFind: $'''__''' MatchCase: False MatchEntireCellContents: False ColumnNameOrIndex: 0 DataTableMatches=> DataTableMatches
SET StartRow TO DataTableMatches[0][0]
Text.ToNumber Text: StartRow Number=> StartRowAsNum
SET StartRowAsNum TO StartRowAsNum + 1
LOOP LoopIndex FROM 1 TO StartRowAsNum STEP 1
Variables.DeleteRowFromDataTable DataTable: DataTable RowIndex: 0
END
Variables.FindOrReplaceInDataTable.FindItemInDataTableByColumnIndex DataTable: DataTable AllMatches: True ValueToFind: $'''Lower''' MatchCase: False MatchEntireCellContents: False ColumnNameOrIndex: 0 DataTableMatches=> DataTableMatches
SET EndRow TO DataTableMatches[0][0]
Text.ToNumber Text: EndRow Number=> EndRowAsNum
SET EndRowAsNum TO EndRowAsNum
LOOP LoopIndex FROM EndRowAsNum TO DataTable.RowsCount STEP 1
Variables.DeleteRowFromDataTable DataTable: DataTable RowIndex: EndRowAsNum
END
How to copy/paste the above code in your power automate desktop?

Thanks,
Deenuji Loganathan 👩💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥
-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀