March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I find this weird but I may be doing it wrong.
Basically, what I am trying to accomplish is get the max date in the date table which is filtered to start from 1/1/17 until date today (done using DateTime.Date(DateTime.LocalNow()) function). If the date today is 7/18/17, the max date should be that date but the result of my DAX formula is 12/31/17.
The following are the formulas I'm using:
MaxDate = MAX ( Calendar[Date].[Date] ) MaxDate with Calculatte = CALCULATE ( MAX ( Calendar[Date].[Date] ), ALL ( Calendar ) )
Proud to be a Super User!
Solved! Go to Solution.
Thanks for the response but as mentioned, my calendar table's maximum value is the current date so it should be 7/18.
But I've figured out where I went wrong. By adding a .[Date] after Calendar[Date], the measure uses the hidden table created by PBI desktop's time intelligence featture. Removing .[Date] solves the problem.
Proud to be a Super User!
Hi @danextian,
The question is that you are using the ALL and by doing that you discard all the filter you have on the Calendar date and return the maximum value of the full table ignoring all the rest of the filters you need to do something like this:
MaxDate with Calculatte ALLSELECTED = CALCULATE ( MAX ( Calendar[Date] ), ALLSELECTED ( 'Calendar'[Date] ) )
As you can see below I have made a print with your two formulas and mine with a slicer see the result:
Regards,
Mfelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português
Thanks for the response but as mentioned, my calendar table's maximum value is the current date so it should be 7/18.
But I've figured out where I went wrong. By adding a .[Date] after Calendar[Date], the measure uses the hidden table created by PBI desktop's time intelligence featture. Removing .[Date] solves the problem.
Proud to be a Super User!
Thanks @danextian . Sometimes a big problem can be solved with simple solutions. Your suggestion here made my day peaceful.
Hi @mbm ,
This was from my early DAX days when I was still a newbie and not yet a super user.
Proud to be a Super User!
Hi @danextian,
Thanks for your sharing. Please kindly mark the corresponding resolution as an answer so that it can benefit more users.
Thanks,
Yuliana Gu
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |