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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jcox
Frequent Visitor

DATEDIFF when using Dates in a Column and using the TODAY() Function

So I feel like I've been close to finding a solution for a while, but I've been trying to write a measure that will take todays date from the TODAY() function, and subtract the date from a column already set up in a query in my data set and the end result I want to see is the amount of days in between. What I'm trying to find is essentially TODAY() - [Last Sales Stage Date] = Days between. I can't write it like that though so I was wondering if anyone has had any luck. Thanks!

 

-Jonathon

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@jcox You have to create a Calculated COLUMN and your formula would look something like this...

 

Day Between COLUMN = DATEDIFF ( [Last Sales Stage Date], today(), DAY )

 

http://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/

View solution in original post

6 REPLIES 6
Greg_Deckler
Super User
Super User

This will work:

 

(TODAY()-[Date].[Date])*1.

This will avoid errors you can get with DATEDIFF depending upon starting date being larger than end date. 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler's solution also works but again NOTE it has to be a COLUMN not a Measure! (you say you are trying to write a Measure)

 

Sort of, you can actually write it as a Measure if you use an aggregation function like this:

 

Measure 2 = (TODAY() - MAX([Date].[Date])) *1.

That is a valid measure formula believe it or not.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Seems that was your 2,000th post - Congratulations!

 

Yes with MIN or MAX would work as Measure!

Sean
Community Champion
Community Champion

@jcox You have to create a Calculated COLUMN and your formula would look something like this...

 

Day Between COLUMN = DATEDIFF ( [Last Sales Stage Date], today(), DAY )

 

http://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/

jcox
Frequent Visitor

This worked great thank you for such a quick response. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.