Hello, I am new to PowerApps.
I have a gallery that been filtered with the current user, and I want to update the LastUpdate field for all loaded records in that gallery. My SP list is projectTable, so I wrote this code:
ForAll(
TemplateGalleryList1_3.AllItems,
Patch(
projectTable,
LookUp(
projectTable,
Email = CurrentUser
),
{LastUpdate: Today()}
)
)
I didn't get any error, and it didn't work either.
Any help would be appreciated.
Thank you


Report
All responses (
Answers (