Hello,
I am building my first ever power app, a simple hotel booking form. The app is connected to a Form SharePoint List where it patches the responses, and I have nearly everything working as intended:
As you can see, the form is split up in two screens, so to patch the information together from those screens I just assigned a variable "varFormData" to both and patched it like so within the OnSelect field of the "Submit" button on Page 2:
And after clicking Submit, the SharePoint list updates as so:
Now, I want to modify this app so that the Guest Name field on page 1 will allow for multiple selections, so the intention is that if there are multiple people going to the same hotel on the same dates, one person can fill out the form for both of them rather then both needing to fill it out separately. With that said, I want these cases to patch onto the SharePoint list as separate rows, so that if I answer 2 names in the Guest Name field, 2 new rows will show up on the SharePoint list, one for each name but with all of the other columns on both rows identical.
I can't seem to find a solution to this exact issue online, so any help would be appreciated!