Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi,
I'm relatively new to PowerBI but have been searching the forums and other websites for an answer but nothing seems to work.
I have built a report which contains several different visuals including a treemap, funnel and world map. I would like to include a list or dropdown selection where someone can change the values in a visual. For example, on the world map, I am currently overlaying the value of several companies an asset manager owns. I would like to include a box whereby instead of valuations the user can select say "Revenue" as the Size measure.
I have seen previous posts which refer to creating a new unrelated table with one column and the measures you want to "select" as rows. I have done this but then can't seem to get a SELECTVALUE or HASONEVALUE DAX expression to work. Are there any other ways?
Thanks
Solved! Go to Solution.
Hmmm, yes you should be able to create a disconnected table. Has to not be connected to anything else, no relationships. It might be called 'MyDisconnectedTable' and have an Item column with values of
bunny
fluffy
poo
You should then be able to write a measure like this:
Measure =
VAR __selected = SELECTEDVALUE('MyDisconnectedTable'[Item])
RETURN
SWITCH(__selected,
"bunny",SUM('Table'[Commission]),
"fluffy",SUM('Table'[Revenue]),
"poo",SUM('Table'[Cost]),
BLANK()
)
Not sure why you would not be able to get HASONEVALUE or SELECTEDVALUE to work. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
If you need additional examples: https://community.powerbi.com/t5/Community-Blog/Solving-Attendance-with-the-Disconnected-Table-Trick...
HI @Anonymous,
Please share some sample data to help us clarify your data structure, formulas and relationship mapping, it will help for test and fix your formulas.
Regards,
Xiaoxin Sheng
Hmmm, yes you should be able to create a disconnected table. Has to not be connected to anything else, no relationships. It might be called 'MyDisconnectedTable' and have an Item column with values of
bunny
fluffy
poo
You should then be able to write a measure like this:
Measure =
VAR __selected = SELECTEDVALUE('MyDisconnectedTable'[Item])
RETURN
SWITCH(__selected,
"bunny",SUM('Table'[Commission]),
"fluffy",SUM('Table'[Revenue]),
"poo",SUM('Table'[Cost]),
BLANK()
)
Not sure why you would not be able to get HASONEVALUE or SELECTEDVALUE to work. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
If you need additional examples: https://community.powerbi.com/t5/Community-Blog/Solving-Attendance-with-the-Disconnected-Table-Trick...
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
73 | |
71 | |
69 | |
46 | |
44 |
User | Count |
---|---|
46 | |
38 | |
28 | |
28 | |
28 |