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 all
I need to have a measure that returns the latest % value. For example if one value is for March 2019 and the other one for november 2019, the measure should return me the value of november 2019.
Regardless of which date you have on the date slicer the condition above should be kept.
I created the following dax:
Most Recent Score =
CALCULATE(
AVERAGE(NEXT[NEXT]),
LASTNONBLANK('date'[Start of Month],
AVERAGE(NEXT[NEXT])),
ALL('date'[Start of Month])
)
However on my kpi card, is returning me a blanK(), but the value of the example should be 88.43% (value of november in the table):
How can I get it right?
pbix https://1drv.ms/u/s!ApgeWwGTKtFdhmc6hMVmmqyeKKwZ?e=Lh6sK2
Thanks.
Solved! Go to Solution.
Hi @o59393 ,
Please try the following measure.
New Measure =
var max_date = CALCULATE(MAX(NEXT[Date]),ALLSELECTED())
var lastest_ = CALCULATE(AVERAGE(NEXT[NEXT]),FILTER(ALL('date'),'date'[Start of Month]=max_date),ALLSELECTED(facilities))
return
lastest_
The result like this,
If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @o59393 ,
Sorry for the late reply.
We think the facility_id 6408 doesn’t have the data in 2020. So the card shows the blank.
We notice your model has some custom interactions, please make sure all slicers are working for the two visuals.
If you have any question, please kindly ask here and we will try to resolve it.
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
That is correct 2020 is empty for that facility. However, is there any possibility it can still return the latest value when the slicer date of month is november 2019 and above for that particular facility id (and any other too depending on their latest NEXT[Date]) ?
I chose december 2019 and got a blank, but it should return the latest value, in this case november based on the NEXT[Date] for the id 6408:
My final dashboard I have a table like this:
The other metrics you see on the table are 12 rolling months and they do show with no problem, however NEXT is a particular one that should be only the latest value as we go through the year..
@o59393 You will need to block interactions between your filter and the latest value you are showing. This way your filter will not impact the latest value. Go to format and select edit interactions. Here, select the none (round circle) to block interactions between filters and the latest value.
Proud to be a Super User!
Hi @negi007
The thing is that I can't block the interactions since I have a table (seen in my previous comment) that contains other KPI's.
Blocking the interactions wouldn't allow the other ones to work.
Regards!
Hi @o59393 ,
Please try the following measure.
New Measure =
var max_date = CALCULATE(MAX(NEXT[Date]),ALLSELECTED())
var lastest_ = CALCULATE(AVERAGE(NEXT[NEXT]),FILTER(ALL('date'),'date'[Start of Month]=max_date),ALLSELECTED(facilities))
return
lastest_
The result like this,
If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I can't access the pbix solution. Looking for something similiar. Can you please repost?
So it finally worked 🙂
I did a small arrangement to your last DAX in order to get the latest result by selecting a year and month:
New Measure =
var max_date = CALCULATE(MAX(NEXT[Date]),ALL('date'[Start of Month]),ALL('date'[Year]))
var lastest_ = CALCULATE(AVERAGE(NEXT[NEXT]),FILTER(ALL('date'),'date'[Start of Month]=max_date),ALLSELECTED(facilities))
return
lastest_
Thanks for your help and patience in this problem I had.
Regards !
Thanks for the help!
I checked the measure and I see it works only when you select year and start of month to all.
I would like to get the result (latest value) when you select the year, start of month and the facility id (this one already works).
I know we can get that with blocking the interactions, however i don't want that to be activated since it would affect me other metrics in a table.
So my experect result would be something like (could only do it visually):
So as you see my expected result would be to get the latest value when you select year, month and facility without havind to block the interactions.
Thanks a million for the help!
Hi @o59393 ,
We can create a new measure to meet your requirement.
New Measure =
var selected_ = MIN(facilities[facility_id])
var max_date = CALCULATE(MAX(NEXT[Date]),FILTER(facilities,facilities[facility_id]=selected_))
return
CALCULATE(AVERAGE(NEXT[NEXT]),FILTER('date','date'[Start of Month]=max_date))
Put it in the card and the result like this,
If you have any question, please kindly ask here and we will try to resolve it.
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Really appreciate your help!
I noticed that if you selec the year in the pbix the measure wont work.
I added to the metric the following criteria but it didnt work:
New Measure =
var selected_ = MIN(facilities[facility_id])
var selected_2 = MIN(facilities[bottler])
var selected_3 = MIN(facilities[region])
var max_date = CALCULATE(MAX(NEXT[Date]),FILTER(facilities,facilities[facility_id]=selected_),facilities[bottler]=selected_2,facilities[region]=selected_3)
return
CALCULATE(AVERAGE(NEXT[NEXT]),FILTER('date','date'[Start of Month]=max_date),'date'[Year]=max_date)
Basically I added the bottler and region variables.
Within the first calculate I added the selected2 and selected 3.
And in the last calculate I added the year.
Can you please help how to get it right?
I attach pbix
https://1drv.ms/u/s!ApgeWwGTKtFdhm67GNHb8nJIwiDt?e=Di98Do
Thanks a million!
Hope you're doing well. Any advise on how to be include the year too on the dax measure like mentioned above?
Thanks!
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 |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |