Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
employe4_2
Contributor III
Contributor III

converting seconds into a date

Hi,

i got a second counter wich basicly is a date:  14 86 41 83 36 correspond to 6 february 2017 10:00:40

and 14 86 41 83 56 is 6 february 2017 10:01:00.

I would like to convert that big number into a date, but i can't found out how or if it's possible...

thx

 

2 Solutions

Accepted Solutions
marcus_malinow
Partner - Specialist III
Partner - Specialist III

jerryyang756
Creator
Creator

=Timestamp((1486418336/86400)+25569)

Output is here:

06/02/2017 09:58:56 PM

=Date(Timestamp((1486418336/86400)+25569),'DD/MM/YYYY')

Output:

06/02/2017 

View solution in original post

3 Replies
marcus_malinow
Partner - Specialist III
Partner - Specialist III

This looks like a Unix timestamp

See this thread for details on how to convert

https://community.qlik.com/t5/QlikView-Creating-Analytics/transform-UNIX-date-format-to-ASCII-Window...

jerryyang756
Creator
Creator

=Timestamp((1486418336/86400)+25569)

Output is here:

06/02/2017 09:58:56 PM

=Date(Timestamp((1486418336/86400)+25569),'DD/MM/YYYY')

Output:

06/02/2017 

Giwa_Temitopoluwa
Contributor
Contributor

how do I apply this?