
Partner - Creator
2018-05-13
01:35 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Timestamp to Date
Hi togehter,
how can I make a date and time from a timestamp like this:
1504190905447
851 Views
1 Solution
Accepted Solutions

MVP
2018-05-13
02:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
=TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)))
2 Replies

MVP
2018-05-13
02:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
=TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)))

Anonymous
Not applicable
2018-05-14
03:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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,
