Hi there,
I have a Sharepoint list of student names entitled 'Student Lockdown Register'. In the event of an emergency, you can filter the students by name etc. and add them to a new list ready to be bulk updated in Sharepoint. This is displayed in a Gallery so you know what students you've already selected, there are no duplicates.
The new list is a Collection entitled NewTable. It stores everything under the same name (e.g FullName as FullName) however I have tried using different column names that are different.
On select of a button, I want to update the students in the NewTable with the words "Accounted For" under the column Register.
I just cannot seem to do it. I've tried Patch, For All, UpdateIf etc and nothing seems to work. As a beginner, I'd appreciate some guidance if anyone can help!
I've tried:
ForAll(NewTable,Patch('Student Lockdown Register',LookUp('Student Lockdown Register',ID=NewTable[@ID],{Register:"Accounted For"})))
Among others that I've lost count of!