This is a real puzzler!
I have a gallery displaying a collection (works fine). The collection is built from a SharePoint List.
I have a button, which contains an OnSelect action. The button has started to display an error for the following code:
Patch(
'My SharePoint List',
UpdateIf(
TmpcolGridData,
Created = Blank(),
{ID: Blank()}
)
);
Invalid argument type (Table). Expecting a Record Value instead.
The function 'Patch' has some invalid arguments.
Cannot use a non-record in this context: 'UpdateIf(TmpcolGridData, Created = Blank(), {ID:Blank()})'.
The main sticking point seems to be with the UpdateIf. Both of these columns exist in the Collection.
Any advice would be much appreciated.
Regards
Rob