Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet 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 ?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |