Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello all,
I want to calculate the week differences between a datecolum (deelnemers[AanvangStatus] and todays date. I want to do this by a Measure.
The DAX formula im using is: DATEDIFF(...
the date i want to use in Date1 = deelnemers[AanvangStatus], but as you can see (in printscreens below), its only allowing me to use measured values from table deelnemers (which are no date colums?!).
How can I use deelnemers[AanvangStatus] colum in the DATEDIFF measure? (or what am i doing wrong?)
Greetings,
Art
Solved! Go to Solution.
You have tu use a summarization function such as MAX.
Try this:
Diff = DATEDIFF(MAX(Date1), TODAY(), WEEK)
You have tu use a summarization function such as MAX.
Try this:
Diff = DATEDIFF(MAX(Date1), TODAY(), WEEK)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.