Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I added Description column to my data.
For Example, there is a filter named Exercise and the data in the column is walk,run,yoga.
the problem is if i chose walk ,runor yoga it is showing the correct description.However EVEN IF THERE IS NOTHING SELECT IN THE COLUMN THE DESCRIPTION SHOWS THE WALK DESCRIPTION.
Please Help
Solved! Go to Solution.
Hi, @Himaja95
You can try the following methods.
Measure = SELECTEDVALUE('Table'[Description])
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Hope this helps.
Instead of BLANK() you can pass any text which you want to show.
Hi, @Himaja95
You can try the following methods.
Measure = SELECTEDVALUE('Table'[Description])
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Himaja95
I am not very cleat
What I understood, I am trying to provide a solution
Create a measure and use the Measure in your visual
MeasureName = VAR _selection = SELECTEDVALUE('table'[walkzogaruncolumn])
RETURN
SWITCH(
TRUE(),
_selection = "zoga","the text you want to show" or column,
_selection = "run","the text you want to show" or column,
_selection = "walking","the text you want to show" or column,
"default text you want to show when no filter selected" or column or BLANK()
)
Please use proper column and text in above dax
If solved your requirement, please mark this answer as SOLUTION.
If this comment helps you, appreciate your KUDOS
Proud to be a Super User! | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 21 | |
| 18 |