Hi to all,
I have a gallery with checkboxes in every row, I have a selectedRow collection.
Outside the gallery I have a button, I want to Patch the record in my list if the record don't exist or modify the specific record, I'm trying to use this code
ForAll(
selectedRow;
If(
IsBlank(LookUp(IDShadowList; IDshadow = ID));
Patch(
SPlist;
{
Title: ThisRecord.title;
IDshadow: ThisRecord.ID
}
);
Notify("Record already exists"; NotificationType.Error)
)
)
it don't work, how can I modify it?