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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everyone,
I would like to know certainly something easy and simple ...
The objective is to display in a card the data "Name of Brand" that is selected in the filter "Brand" otherwise, if no selection then diplay a blanck.
Is it possible to do a dax formula with " (Brand[Name of Brand] is not selected, "", [Brand of name])
Thank you in advance for your help,
Léna
Solved! Go to Solution.
I am back with a solution that works :
Mesure = if(ISFILTERED('Brand'[Name of brand]),FILTERS('Brand'[Name of brand]),"")
Maybe we can optimise it ?
hi @LD1
try to plot a measure like:
Measure =
IF(
SELECTEDVALUE(data[brand])=BLANK(),
"",
SELECTEDVALUE(data[brand])
)
I am back with a solution that works :
Mesure = if(ISFILTERED('Brand'[Name of brand]),FILTERS('Brand'[Name of brand]),"")
Maybe we can optimise it ?
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 |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |