This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I have a field which stores unix time time, my filed value contains [{ "start":1529469730821}], I have extracted the number using and the used below calculation to convert it to readable format.
#datetime(1970, 1, 1, 0, 0, 0) + #duration(0, 0, 0, [epoc]/1000)
But I am geeting below errors, please let me know how can I resolve this issue. Thanks.
Solved! Go to Solution.
Hi @shkabuzar,
FIrst make sure the datatype of epoc column is whole number, then try adding the calculated column.
You can also do this in DAX by using below code:
Timestamp = Table[epoc] / 86400000 + DATE(1970,1,1)
Regards,
Prateek Raina
Hi @shkabuzar,
It would be better to modify the formula like below.
Timestamp = IF(ISBLANK('Table'[epoc]),BLANK(),'Table'[epoc] / 86400000 + DATE(1970,1,1))
If you have solved your problem, could you please accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please share your expected output, so that we can help further investigate on it?
Best Regards,
Cherry
Hi @shkabuzar,
It would be better to modify the formula like below.
Timestamp = IF(ISBLANK('Table'[epoc]),BLANK(),'Table'[epoc] / 86400000 + DATE(1970,1,1))
If you have solved your problem, could you please accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please share your expected output, so that we can help further investigate on it?
Best Regards,
Cherry
Hi @shkabuzar,
FIrst make sure the datatype of epoc column is whole number, then try adding the calculated column.
You can also do this in DAX by using below code:
Timestamp = Table[epoc] / 86400000 + DATE(1970,1,1)
Regards,
Prateek Raina
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 25 | |
| 22 | |
| 14 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 25 | |
| 20 | |
| 20 |