Hi Varu,
Your XPath should work across different rows using a specific number and this number can be replaced with the loop variable.
For example, this page displays a table where the XPath below works by using different numbers. The number next to (tr) controls which row to go through and the number next to (td) controls which cell to go to.
//table/descendant::tr[5]/td[3]
If Loop command is used, you can replace the row number with the variable to move between different rows, your XPath will look like this:
//table/descendant::tr[@loop]/td[3]
Please let me know if this make sense. I can also inspect any test case and fix it if you like.
Regards,
Subject7 Team