Count the number of iteration inside For Each Row in Datatable and display it on Display Message

Hey

To find the current row number (row index) then insert the following expression within a For Each Row:

1 - Insert a display message activity
2 - Insert the following text:
DT.Rows.IndexOf(row).ToString+" / "+DT.Rows.Count.ToString

Update the capital letters DT with your datatable variable.

Take a look here at this post:

Cheers

Steve