Hi @Andriesdt
There are a couple of ways to approach this. This looks like a SharePoint List, so how I would approach it is:
- Export the List to Excel
- 'Get List' action on the Excel sheet
- 'Loop' action, set on the (RPA) List
- Make a 'Click' action with the Rules changed to match the SharePoint List item name
- Do the work you need to do & return to the SharePoint List
- End Loop to move to the next item in the (RPA) List.
This Blog post might be helpful for you if you take this approach: https://community.nintex.com/t5/Community-Blogs/Nintex-RPA-Manipulating-Rules-to-Make-Dynamic-Clicks/ba-p/109346
Another way would be to use Highlights, if it is actually a web table. I don't remember if a SharePoint List is seen as a table by Nintex RPA or not, but if it is then you can:
- Use a 'Set Variable' action to set the starting row. so [%Row] = 2
- A 'Loop' set on Forever. You'll also need an 'If' action to determine when you exit the 'Loop'.
- Use a 'Start Highlight' action on the correct column, with the Row value set to [%Row]
- 'Click' on the highlighted cell. This should take you into the edit page that you need
- Do whatever work you need to do on the new page.
- Return to the SharePoint List, the highlight will (should) be gone.
- Use 'Increase Variable' on [%Row] to move to the next row.
- End Loop action to return to the beginning of the Loop.