
How to get the rowindex of a particular value from datatable in power automate?
One indirect option is to write the datatable to Excel
Use Find cells to search for the value
If the value is found this action returns the FoundRowIndex
Second is a lengthier option if there are many records but fine for few records.
Maintain a counter variable
Increment the counter by 1 as you Loop through the datatable
If the value is found exit the loop
The counter value will be the row index.