Forum Discussion
DBATTIN
7 years agoFrequent Visitor
DATEDIFF Not Working in Custom Column
I am tyring to add the column as follows = Table.AddColumn(#"Added Custom", "OrderAge", each DATEDIFF ([DateTimeCreated],TODAY(),DAY)) But I get the meaasge Expression.Error: The name 'DATE...
- 7 years ago
DBATTIN I guess you have DateTimeCreated field as DateTime datatype which also needs to converted into Date type. So please try this...
Duration.Days(Duration.From(DateTime.Date(DateTime.LocalNow())-DateTime.Date([DateTimeCreated])))
DBATTIN
7 years agoFrequent Visitor
PattemManoharthe formula is now
OrderAge = Duration.Days(Duration.From(DateTime.Date(DateTime.LocalNow())-[DateTimeCreated]))
This is now showing no syntax errors but returns an error value in the custom column. Have I done something wrong?
PattemManohar
7 years agoCommunity Champion
DBATTIN I guess you have DateTimeCreated field as DateTime datatype which also needs to converted into Date type. So please try this...
Duration.Days(Duration.From(DateTime.Date(DateTime.LocalNow())-DateTime.Date([DateTimeCreated])))
- DBATTIN7 years agoFrequent Visitor
PattemManoharthank you thats brilliant :smileyhappy: