Hi guys,
I have an issue with my flow on setting a rule based on a date.
In my flow I register all the elements from a microsoft form; if a string/date field is empty, autocamically the flow replace the blank cell with "1/1/2001", otherwise I receive an error because that specific cell can't be blank.
Now my issue is related to the fact that I need that cell to be blank and not filled with the variable
The compose formula is this
if(equals(outputs('Crea_elemento')?['body/Deadline'],variables('null')),replace(outputs('Crea_elemento')?['body/Deadline'],'variables('null'),'-'),outputs('Crea_elemento')?['body/Deadline'])
At the end, this formula doesn't replace what I expect