I have Imported an Excel Table on my flow which contains in a date column some dates and some empty cells.
I need to add these values to a sharepoint list but i get this message error:
The 'inputs.parameters' of workflow operation 'Créer_un_élément' of type 'OpenApiConnection' is not valid. Error details: Input parameter 'Date' is required to be of type 'String/date'. The runtime value '""' to be converted doesn't have the expected format 'String/date'.
I supposed that the date format is not correct.
I tried this function below:
if(equals(item()?['Date'],''),null,formatdatetime(item()?['Date'], 'MM/dd/yyyy')))
But still cannot save these dates to my sharepoint list.
Any suggestions?