Click to open on each returned result

I have an automation where a search returns some results in a table. The number of rows returned can change. Each row in the table opens a different record. I need to go to each row and open the record and then go to the next row and open the record until I have gone through all of the rows returned. How can this be done?

Use for each row as a loop:
image
In the body sequence you create your code for a single record.

You can access the data from that tablerow with Row("columnHeaderName").ToString from within the body.

Be sure to complete the ‘body’ sequence in such a way that the second iteration can start from the same point.

Can you provide step by step instructions? I am new to UIPath.