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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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 ?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
8 | |
7 | |
4 | |
3 |
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |