Hi there, I am following Reza Dorrani's @Reza editable grid video and had created an edit button with the Onselect as
If(
varGridEdit,
If(
!IsBlank(
LookUp(
colGridData,
Title = Blank() || Title = "" || IsEmpty(Provider) || IsBlank(Provider) || 'Contact person' = Blank() || 'Contact person' = ""
)
),
Notify(
"Please fill required fields",
NotificationType.Error,
2000
),
Patch(
'Engagement Scheduler',
UpdateIf(
colGridData,
Created = Blank(),
{ID: Blank()}
)
);
Select(btnLoadData);
Set(
varGridEdit,
!varGridEdit
)
);
);
The patch gives the Invalid Argument type error. Can anyone help?
Thanks