Cast string to timestamp in pipeline builder

I have a string in the format of “Friday, March 29, 2024 2:44:57 PM” and I am trying to convert it to a timestamp in pipeline builder and it just does not work. any ideas?

Hey! What are the date formats that you have tried? Did you try

E, MMMM dd, yyyy h:mm:ss a

If that’s giving you trouble, try parsing out the day of the week and use MMMM dd, yyyy h:mm:ss a instead. This should turn something like March 29, 2024 2:44:57 PM into a timestamp of 2024-03-29T14:44:57.000Z

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.