Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
LD1
Helper III
Helper III

Display a selection data in a card with an "IF" function

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. 

 

LD1_0-1683793741234.png

 

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

1 ACCEPTED SOLUTION
LD1
Helper III
Helper III

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 ? 

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @LD1 

try to plot a measure like:

Measure =
IF(
SELECTEDVALUE(data[brand])=BLANK(),
"",
SELECTEDVALUE(data[brand])
)

LD1
Helper III
Helper III

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 ? 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.