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 everyone,
I have a scatter chart with a hierarchy as values (let's say Country/Region/City).
I want to add a constant line on this chart based on the level of hierarchy the user is seeing. For example is the user is on the Country level the constant line would be the result of calculation A, on the Region level it would be the result of calculation B and on the City level it would be the result of calculation C.
I have created a measure that do the job using the ISINSCOPE() function and looks like this:
ConstantLine =
VAR ResultCountry =
MEDIANX(
CALCULATETABLE(
VALUES( 'Location'[Country] ),
ALL(
'Location'[Country],
'Location'[Region],
'Location'[City]
)
),
CALCULATE(
DISTINCTCOUNT( Sales[ID] ),
Sales[HasDiscount] = TRUE()
)
)
VAR ResultRegion =
MEDIANX(
CALCULATETABLE(
VALUES( 'Location'[Region] ),
ALL(
'Location'[Country],
'Location'[Region],
'Location'[City]
)
),
CALCULATE(
DISTINCTCOUNT( Sales[ID] ),
Sales[HasDiscount] = TRUE()
)
)
VAR ResultCity =
MEDIANX(
CALCULATETABLE(
VALUES( 'Location'[City] ),
ALL(
'Location'[Country],
'Location'[Region],
'Location'[City]
)
),
CALCULATE(
DISTINCTCOUNT( Sales[ID] ),
Sales[HasDiscount] = TRUE()
)
)
VAR Result =
SWITCH(
TRUE(),
ISINSCOPE( 'Location'[Country] ),
ResultCountry,
ISINSCOPE( 'Location'[Region] ),
ResultRegion,
ISINSCOPE( 'Location'[City] ),
ResultCity
)
RETURN
Result
My problem is that it simply doesn't work 😞
I mean the easure seems to work because when I use it as Tooltip on my scatter plot I see the correct value when I hover a point.
But when I use the measure as a dynamic constant line it returns an empty result. I tried to replace ISINSCOPE with ISFILTERED but the result is the same. So the measure is working but I can't find a way to make the ISINSCOPE work in the context of a constant line. Can someone help me with this? Is there any workaround?
Solved! Go to Solution.
@Akad , I think you can use field parameter in values of scatter, should be able switch measure like I have done in TOPN
Power BI Field Parameters — A Quick way for Dynamic Visuals: https://amitchandak.medium.com/power-bi-field-parameters-a-quick-way-for-dynamic-visuals-fc4095ae9af...
Power BI Field Parameters- Measure Slicer and Axis/Dimension slicer: https://youtu.be/lqF3Wa1FllE
Switch TOPN with Field Parameters: https://amitchandak.medium.com/switch-topn-with-field-parameters-299a0ae3725f
@Akad , I think you can use field parameter in values of scatter, should be able switch measure like I have done in TOPN
Power BI Field Parameters — A Quick way for Dynamic Visuals: https://amitchandak.medium.com/power-bi-field-parameters-a-quick-way-for-dynamic-visuals-fc4095ae9af...
Power BI Field Parameters- Measure Slicer and Axis/Dimension slicer: https://youtu.be/lqF3Wa1FllE
Switch TOPN with Field Parameters: https://amitchandak.medium.com/switch-topn-with-field-parameters-299a0ae3725f
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 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |