Hi All,
I have two SharePoint lists, an "events" list and a "submissions" list. A staff member will browse a PowerApp that I have created to find an event that they want to work and will submit a request for approval by a manager.
This function patches a new record into the "submissions" list with variables including the staff name, email and the ID from the "events" list.
Patch('Submissions', Defaults('Submissions'), {Title: EventName, EventID: EventID, StaffName:Name, StaffEmail:Email})
The managers then use a second PowerApp to browse the submitted requests and approve or deny them patching the existing record in the Approval column
Patch('Submissions',ThisItem, {Approval: "Yes"});Refresh('Submissions')
I want to create a button which will collect all records with EventID matching the "events" SharePoint list ID and approval column shown as yes " from the "submissions" SharePoint list. This will then patch the potentially multiple records into the "events" SharePoint list and include any person's name who may have already been entered into the first list without overwriting.
Is this possible to get multiple records and combine them into one field on another list?
SharePoint "Events" List

SharePoint "Submissions" List
