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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
jcox
Advocate II
Advocate II

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

4 REPLIES 4
Eric_Zhang
Microsoft Employee
Microsoft Employee


@jcox wrote:

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


@jcox

 

When trying to refer a column in a measure, you have to aggregate it to get a scalar value. Something like

Days between = DATEDIFF(TODAY(),MAX('table'[Last Sales Stage Date]),DAY)
jahida
Impactful Individual
Impactful Individual

You can do it without another calculated column, something like: (assuming you know for sure there are no dates today)

 

MeasureDaysBetween = SUMX(Table, DATEDIFF(Table[Last Sales Stage Date], TODAY(), DAY))

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-a​nd-measures-in-dax/

 

@smoupre'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)

 

Greg_Deckler
Community Champion
Community Champion

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. 



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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