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
Good day.
I have two slicers, Region and Zone. Region is the highest level to Zone i.e. 1 region has multiple zones. Currently, I can display either the selected region or the zone on my card visual, which is perfect.
But if both are selected at the same time, I need to display the lowest level only which isthe zone. Is there a way to do this?
Dax for the measure:
Thank you in advance.
Solved! Go to Solution.
Hi @Tlotly
I think you can change the order of the IF statement slightly to make this work as you want
Measure 3 = var _region = SELECTEDVALUE(Query1[Region Description])
var _zone = SELECTEDVALUE(Query1[Zone Description])
var _branch = SELECTEDVALUE(Query1[Branch Name])
return if(ISFILTERED(Query1[Zone Description]), _zone,
if(ISFILTERED(Query1[Region Description]), _region,
if(ISFILTERED(Query1[Branch Name]), _branch
," ")))
This way it will check if a zone has been selected first, and if so display the selected zone.
Hi @Tlotly
I think you can change the order of the IF statement slightly to make this work as you want
Measure 3 = var _region = SELECTEDVALUE(Query1[Region Description])
var _zone = SELECTEDVALUE(Query1[Zone Description])
var _branch = SELECTEDVALUE(Query1[Branch Name])
return if(ISFILTERED(Query1[Zone Description]), _zone,
if(ISFILTERED(Query1[Region Description]), _region,
if(ISFILTERED(Query1[Branch Name]), _branch
," ")))
This way it will check if a zone has been selected first, and if so display the selected zone.
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 |
---|---|
114 | |
82 | |
77 | |
48 | |
39 |
User | Count |
---|---|
150 | |
117 | |
67 | |
64 | |
56 |