Forum Discussion
harshali
9 years agoFrequent Visitor
Error message when converting unix time
I have a dataset coming from an SQL server in PowerBI. The dataset is currently 21,000+ rows. There is a column that has a Unix timestamp which I am trying to convert to regular timestamp. I am using...
- 9 years ago
You can add a custom column
#datetime(1970, 1, 1, 0, 0, 0) + #duration(0, 0, 0, [UnixTime]/1000)
Regards,
Charlie Liao
v-caliao-msft
9 years agoMicrosoft Employee
You can add a custom column
#datetime(1970, 1, 1, 0, 0, 0) + #duration(0, 0, 0, [UnixTime]/1000)
Regards,
Charlie Liao
rasiksawant09
2 years agoRegular Visitor
Thanks a lot.