
Hi folks,
My question is how can i edit build in User dataverse table by power apps?
For example i want to edit column Status and my code looks like this
Patch(Users, LookUp(Users, 'Full Name' = TextInputCanvas2_1.Value), {
Status: ComboboxCanvas1.Selected.Value}
)
But i have an error:
Invalid argument type. Expecting a OptionSetValue (EmployeeStatusChoices) value, but of a different schema.
You need to set Items property for your ComboboxCanvas1 as:
Choices('Status (Users)')
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If this post or my previous reply was useful in other ways, please consider giving it Thumbs Up.