Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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
MVP
MVP

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
MVP
MVP

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!