How can I access the form data when each form component is inside a repeatable?

I have a repeatable list. The repeatable component in this list is a form, 'researcherPay'. When I look at the form's state, I can see each individual form's data and initialData, per the screenshot below. My goal is to create one final array of objects from the data and initialData from each individual form within the repeatable list, but I can't seem to access that data inside a query, ie, there is no researcherPay.data. When I do try to access researcherPay.data, just the first instance of the list is there.

Thanks
Nick

Hey @Nick_Michniok,

within your listView settings, there is a "Enable istance values" option:

image

When you check that, you'll be able to access your form's data within listView1.instanceValues

When you click on this option, try refreshing your page as it sometimes doesn't render the values automatically.

1 Like

Thank you!!!! That did it.

1 Like