I believe the String to Date&Time node has the logic backwards, for 12PM is returning 00 and for 12AM is returning 12. In the below screenshot 12:25 PM should be converted to 12:25 and 12:03 AM should be converted to 00:03
Sample data:
9/10/2020 12:25:00 PM
9/11/2020 12:03:00 AM
using your configuration I get this message
ERROR String to Date&Time 0:461 Execute failed: Failed to parse date in row 'Row0: Text ‘1/21/2020 4:16:00 PM’ could not be parsed at index 10
Hi @Alejandroc , it’s great that you got the right format, but hopefully you also learned from the few back and forth with @elsamuel and understood how the formatting works, and not just going by with uneducated trial and error.
It’s not too difficult to understand the format:
M is for Month, in single digit representation (for example 9, or 12)
MM is for month, in double digits representation (for example 09 or 12)
d is for day, in single digit representation (for example, 2 or 18)
dd is for day, in double digits representation (for example, 02 or 18)