Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
insideventures1
Contributor II
Contributor II

Timestamp conversion

All the time stamps in the data are of the format: [Dayname, Date Month Year Time]. For eg: Fri, 14 Jul 2017 00:05:26.

How to remove the dayname and convert this to mm/dd/yyyy and also get time as separate field?

Thanks.

1 Solution

Accepted Solutions
sunny_talwar

May be this

Date(Floor(TimeStamp#(Trim(Mid(DateField, 5)), 'DD MMM YYYY hh:mm:ss')))

View solution in original post

2 Replies
sunny_talwar

May be this

Date(Floor(TimeStamp#(Trim(Mid(DateField, 5)), 'DD MMM YYYY hh:mm:ss')))

insideventures1
Contributor II
Contributor II
Author

Thanks a lot!