
Contributor III
2019-01-11
04:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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,133 Views
2 Solutions
Accepted Solutions

Partner - Specialist III
2019-01-11
04:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This looks like a Unix timestamp
See this thread for details on how to convert
2,126 Views

Creator
2019-01-11
05:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=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
2,118 Views
3 Replies

Partner - Specialist III
2019-01-11
04:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This looks like a Unix timestamp
See this thread for details on how to convert
2,127 Views

Creator
2019-01-11
05:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=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
2,119 Views

Contributor
2022-08-22
05:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how do I apply this?
1,483 Views
