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: 
kavieweg
Partner - Creator
Partner - Creator

Timestamp to Date

Hi togehter,

how can I make a date and time from a timestamp like this:

1504190905447

Time.PNG

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this

=TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)))

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

May be this

=TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)))

Anonymous
Not applicable

Hi,

For day and month name u can do like below

TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)),'WWW')&'  '&

TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)),'MMM DD YYYY hh:mm:ss') AS DATE,