I'm trying to update an existing record with a group of users who are added later. The Users column is a multi-line text field. I have in use in the app the list name, the ID of the previously created item in a variable, and a collection and a string of the users. What I don't have at use in the app is the actual Users column that I want to update. When I add the patch to my submit button, it says it doesn't recognize the column:
Patch('My List Name',{ID: Value(ItemID.Text)},['Users':AllItemsString])
I also tried it with UpdateIf, but then I get errors about improper use of the colon:
UpdateIf('My List Name',ID: Value(ItemID.Text),{Users:AllItemsString})
I'm sure my syntax is wrong, but from what I found online through Microsoft and through other questions posted to the community, it looks right. Any suggestions?