The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
this Measure get me the median based on Slicer Selection, Country
IF ( ROUND(MEDIAN(vwKPIMedianDoorToCT[Minutes]),1) = BLANK (), 0, ROUND(MEDIAN(vwKPIMedianDoorToCT[Minutes]),1) )
I want to ignore the country , and also return the median for all countries , for comparison
?? --
Solved! Go to Solution.
Hi,
According to your description, I can roughly understand your requirement, you can try this measure:
Median =
var _value=MEDIANX(ALL(vwKPIMedianDoorToCT),[Minutes])
return
IF(_value=BLANK(),0,ROUND(_value,1))
Then you can create a slicer and a card chart to place this measure, and you will find that the measure will always display the value of the total median regardless of the selection of the slicer:
And you can get what you want.
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
According to your description, I can roughly understand your requirement, you can try this measure:
Median =
var _value=MEDIANX(ALL(vwKPIMedianDoorToCT),[Minutes])
return
IF(_value=BLANK(),0,ROUND(_value,1))
Then you can create a slicer and a card chart to place this measure, and you will find that the measure will always display the value of the total median regardless of the selection of the slicer:
And you can get what you want.
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This does not appear to be working ,
If I select all countries , 2021 Q1 Median is 75
If I select 1 country , (I want to igore this slicer) , it is 30 , ( I want to illustrate 75 regardless of country selection) but to still filter based on Date
If you want to ignore a slicer, then you need to use ALL instead of ALLSELECTED.
See if this is any closer:
CALCULATE (
MEDIAN ( vwKPIMedianDoorToCT[Minutes] ),
ALL ( vwKPIMedianDoorToCT ),
DimDate
)
thanks
Looks simple when coded
Great thanks
Looks simple when written !
I'd try writing it like this:
VAR MedianAllCountries =
CALCULATE ( MEDIAN ( vwKPIMedianDoorToCT[Minutes] ), ALLSELECTED () )
RETURN
IF ( ISBLANK ( MedianAllCountries ), 0, ROUND ( MedianAllCountries, 1 ) )
Great thanks
If I want to ignore all slicer but the Date dimension , having issues with e[Quarter]))) brackets
You can add back in the tables you want to keep as filter context like this:
CALCULATE ( MEDIAN ( vwKPIMedianDoorToCT[Minutes] ), ALLSELECTED (), DimDate )
Alternatively, use ALLSELECTED more narrowly only on the things you want to remove local filter context for. For example,
CALCULATE ( MEDIAN ( vwKPIMedianDoorToCT[Minutes] ), ALLSELECTED ( Slicer[Country] ) )
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
19 | |
18 | |
17 | |
15 | |
13 |
User | Count |
---|---|
36 | |
35 | |
20 | |
18 | |
18 |