Hi @Kristupas5514 ,
Does your normal date format be '2024-04-11'?
Is it only the date and does not include the time?
If so ,please try put this expression in 'Update item' and 'create item' Date parameter:
if(empty(DateOption),
'unidentify',
if(greater(length(last(split(DateOption,'-'))),2),
'unidentify',
DateOption))
The ‘DateOption’ in my expression represents the dynamic content of the date column.
When you quote my expression, remember to replace the ‘DateOption’ with the dynamic content of your own date column.
Best Regards,
Sunshine Gu