My PowerApp has started behaving strangely when I’m trying to clear a date field in a SharePoint list. The code is basically:
UpdateContext({MyValue: Text(Now(), “yyyymmddhhmmss”});
ClearCollect(tmp, MyValue);
Patch(MyList, First(Filter(MyList, MyID=varID)), {Col1: MyValue, Col2: Blank()});
Collect(tmp, MyValue)
Col2 is a date column in SharePoint list.
MyValue is cleared during the patch statement.
IfError doesn’t throwback an error
Require that this column contains information is set to No.
I need to clear this date. Can’t use a dummy date like 1/1/1900
Any suggestions why this has just started happening and how to avoid issues?