I have a Power App linking to a Sharepoint List. It is creating new records all fine but when I go to update an existing record based on RECORDID I get an error stating (These types cannot be compared: Control, Text)
Any help would be appreciated.
My code on my UPDATE button: (OnSelect)
eg:
Patch(SPList, LookUp(SPList, Recordid="123456"), { Field1: Field2000 } )
SPList = Sharepoint List Name, Recordid is what I want to lookup from the existing records.
Field1 is the field in the SPList that I want to update by what has been inputted/changed on the PowerApp for Field2000 value.
Thanks.