Hi @v-jefferni
Thank you for your attention!
Do you want to patch the CustomField1 to the User entity? - Yes by individual user.
If you do, the Patch formula should be: - I have used the same formula as mentioned in the original post against Users Collection.However it's not working, I assume that's because records are more than 2000, and filter could work only on 2000 records at time?
Patch( Users, First( Filter(Users, 'Primary Email' = User().Email )), { CustomField1: "Testing" }))
The Patch functions works in syntax like Patch( DataSource, BaseRecord, ChangeRecord1 [, ChangeRecord2, … ]), the BaseRecord you want to modify should be in the data source. - Yes, that's why I have applied the similar formula which is not working
You created a collection “CollUsers”, could you please share more details about your scenario? Collections collect one or many records form data sources, but store them temporarily. Modify a collection won’t affect the records in data source even if they are totally same. - There are more than 5000+ user records, I think I require to know how to filter large records - any clue? because when I filter records from first 2000, the same formula works, but not more than 2000 records that is what I am experiencing.
Thanks,