I am trying to use the patch function in the OnSuccess property of my Form Control to update the status column in my 'Entry Form' SharePoint list.
For example, when the user completes the form for Phase 1 of the project the power app looks up the relevant project number in the 'Entry Form' and updates the 'Current Phase' to "Phase 1".
I am not getting any errors but it's not updating the list. Any ideas?
Patch(
'Entry Form',
LookUp('Entry Form', 'Project Number' = DataCardValue2.Text),
{
'Current Phase': {Value: "Phase 1"}
}
)