Hello Community,
I am creating a Flow which works with an Excel table. The unique identifier of the rows is an index number and there is a do-until within a script. My goal is to have the script run until the last row of the table. Everything is working well, except the total number of rows.
I know the formula to find the number of rows within the table, but since the index starts with 2, the script always skips the last item, meaning I need to add +1 to the below formula somehow.
Expression used: length(body('ColumnName')?['value'])
Could you please advise how to 'add plus one' to this expression?
Thank you!