Hi @Pasquale_p , as your data appears to contain the string “NULL” rather than an actual null (missing) value, one option is to first convert these into actually missing values using Rule Engine, and then you can use String to Date&Time after that
The following Rule Engine rule will do as you require.
Normally, the final line of the Rule Engine would be a “catch-all” TRUE =>something but by leaving that off, it will result in the default being the creation of a missing value. In this case, any line that doesn’t contain the string “NULL” will be reproduced as-is, meaning that any line that does contain “NULL” will become missing
After that a Date&Time to string node can perform the required conversion.
That’s a nice trick @takbb ! I usually use the Rule Engine’s TRUE => “”, then use the AutoCast to convert empty strings to missing values… didn’t realize that leaving it to default would save me the double trouble.