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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
DBATTIN
Frequent 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 'DATEDIFF' wasn't recognized.  Make sure it's spelled correctly.

 

Can you help as I cannot see what I have done wrong?

1 ACCEPTED SOLUTION

@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])))




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

6 REPLIES 6
PattemManohar
Community Champion
Community Champion

@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]))) 





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




@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?

@DBATTIN Please use DateTime.Date(DateTime.LocalNow())





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




@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?

 

 

@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])))




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




@PattemManoharthank you thats brilliant Smiley Happy

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

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