Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi togehter,
how can I make a date and time from a timestamp like this:
1504190905447
May be this
=TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)))
May be this
=TimeStamp(MakeDate(1970) + (1504190905447/(24*60*60*1000)))
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,