Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
shkabuzar
Frequent Visitor

Error while converting the Unix time

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.epoc error.jpgepoc.jpg

 

2 ACCEPTED SOLUTIONS
prateekraina
Memorable Member
Memorable Member

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

View solution in original post

v-piga-msft
Resident Rockstar
Resident Rockstar

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

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

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

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
prateekraina
Memorable Member
Memorable Member

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

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors