Forum Discussion
jcox
Advocate II
10 years agoDATEDIFF 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 alr...
- 10 years ago
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/
Sean
Community Champion
10 years agoGreg_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)
Greg_Deckler
Community Champion
10 years agoSort 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.
- Sean10 years ago
Community Champion
Greg_Deckler Seems that was your 2,000th post - Congratulations!
Yes with MIN or MAX would work as Measure!