Hi,
Can anyone help me with the below issue?
I need to update the column in a SharePoint list automatically with the value of another SharePoint list column for a button click.
Can you please help me with the powerapps formula.
Hi @Naresh,
Could you please share a screenshot of your PowerApps app's configuration?
Is the column that you want to update a Lookup type column within your SharePoint list?
I have made a test on my side and my app's configuration as below:
I assume that you want to update the Executor column in List1 with the value from the Names column of List2 as above. The OnSelect property of Button control (Update) set to following formula:
Patch('20180525_case1',First(Filter('20180525_case1',TaskName=Form1.Updates.TaskName)),{Executor:DataCardValue10.Text,Title:DataCardValue1.Text})
Note: The '20180525_case1' represents the List1 data source, in addition, the TaskName column is a unique column in my List1.
Best regards,
Kris