Forum Discussion
DATEDIFF Not Working in Custom Column
- 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 You are trying to use both M-Language and DAX at one place and that's the reason for error. DATEDIFF is available in DAX but not in Power Query Editor.
If you want to achieve DATEDIFF in Power Query Editor then use Duration.Days(Duration.From([EndDate]-[StartDate])))
PattemManoharIt now will not recognise the funtion Today() is that for the same reason? If so what function do I need to use for Today please?
- PattemManohar7 years agoCommunity Champion
DBATTIN Please use DateTime.Date(DateTime.LocalNow())
- DBATTIN7 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?
- PattemManohar7 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])))