I have this formula which takes ages to run on 600 items. I want to update all items in the SharePoint list with the same value. I understand this can be done with one call to SharePoint by patching in one go. What is the correct way to do this?
ForAll( ShowColumns( BMSlibrary, "ID", "Issue" ), Patch( BMS, ThisRecord, {Issue: Value(TextInput1.Text)} ) )