Forum Discussion
13 digit EPOCH getting error when adding new column
- 3 years ago
PowerBiPro2000 That's a reference to the step before the current step. You can just add a column and paste in this part of the formula:
#datetime(1970, 1, 1, 0, 0, 0) + #duration(0, 0, 0, [EPOCH COLUMN]/1000))
PowerBiPro2000 Oh, sorry, PQ, then this:
= Table.AddColumn(#"Changed Type", "Custom", each #datetime(1970, 1, 1, 0, 0, 0) + #duration(0, 0, 0, [EPOCH COLUMN]/1000))
You don't use table references in PQ
- PowerBiPro20003 years agoFrequent Visitor
Greg_Deckler As expected, it was my error! However, now I am getting this error: Expression.Error: The name 'Changed Type' wasn't recognized. Make sure it's spelled correctly.
What am I doing wrong? Thank you for your help!
- Greg_Deckler3 years agoCommunity Champion
PowerBiPro2000 That's a reference to the step before the current step. You can just add a column and paste in this part of the formula:
#datetime(1970, 1, 1, 0, 0, 0) + #duration(0, 0, 0, [EPOCH COLUMN]/1000))
- PowerBiPro20003 years agoFrequent Visitor
Greg_Deckler What does the "Changed Type" represent? I can't get past "Expression.Error: The name 'Changed Type' wasn't recognized. Make sure it's spelled correctly" I'm surprised how difficult it is to convert Epoch dates (at least it has been for me).