Change record displayed in form on click

I have a form which displays a record in my database. the form consists of text, numbers and an image. When i click next, i want to be able to display the next row in the database.
What is the way to do this? It seems simple enough.

Thanks!

You would need to have the records saved somewhere on the page, like a custom state as a list and then use workflows to change which item from the list is displayed in your form. Your form container should have a content type of the same type the items are. Your input elements need to use initial content equal to the container value.

you can also have a hidden repeating group somewhere on the page and call the repeating group’s list of items: item at index _____. You should increment a custom state that is a number when the user clicks next.

This sounds promising…now i just need to decipher how to do all these things :grinning_face_with_smiling_eyes: