I am converting a power app to use a Sharepoint list instead of CDS for its data source (licencing issues).
Not wanting to recode too much, I just want to use Patch to update a single field in the list, but I cannot get to work. The auto suggest when editing a formula does not show my fields, and when I write them in, it just red underlines it all.
The docs say
Patch (List, baserecord, items:values)
So I use
Path ( 'My SP List', ID = IDNumber, { recordLabel : " some text"})
where ID is the column ID in the SP list, IDNumber is my power app variable I have retrieved earlier using LookUp, and recordLabel is the field I want to update with "some text".
Am I missing something obvious here, like I need to do formsubmit or use a flow like others have done? This would require reworking of my app...