Forum Discussion
AlbertMaes
7 years agoRegular Visitor
Java Long Date does not convert to time in query editor
Hi there, new to the forum and new to data modelling... I am connecting to a PostGres Database of our ticketing system (ManageEngine ServiceDesk) where timestamps are stored in what i assume ...
- 7 years ago
hi,@AlbertMaes
You can add a calculate column when you modeling like this
Date = DATEVALUE("1970-1-1") + (Table1[Column1]/(60*60*24*1000))Result:
Best Regards,
Lin
v-lili6-msft
7 years agoCommunity Support
hi,@AlbertMaes
You can add a calculate column when you modeling like this
Date = DATEVALUE("1970-1-1") + (Table1[Column1]/(60*60*24*1000))Result:
Best Regards,
Lin
AlbertMaes
7 years agoRegular Visitor
Thank you Lin! Works a treat!!