Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
105 | |
99 | |
99 | |
38 | |
37 |
User | Count |
---|---|
156 | |
121 | |
73 | |
73 | |
63 |