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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Vanessa250919
Helper IV
Helper IV

Visual card All mention

Hello, I have one question about the CARD visualisation, I need to show the agent name, but when I don't used a filter I see the First Agent Name, it's possible to add the mention "All" in the CARD visualistion ? 

 

thanks !! 

1 ACCEPTED SOLUTION
Pragati11
Super User
Super User

Hi @Vanessa250919 ,

 

I am taking following sample data where I have a field named Location as a slicer and a card visual with this value:

Pragati11_1-1624562713409.png

When I select anything in the slicer that value is displayed in the card visual.

If I understand your requirement correctly, you want to display ALL in the card visual when nothing is selected in the slicer.

for that create the following measure:

Measure =
var t1 = SELECTEDVALUE('Table'[Location])
RETURN
IF(t1 = BLANK(), "ALL", t1)
 
Move this measure to card visual. Now if you don't select anything in the slicer, card visual shows ALL as below:
Pragati11_2-1624562854542.png

Make sure to use your column name in the above measure.

 

Let me know if this is what you were looking for.

 

Thanks,

Pragati

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

View solution in original post

2 REPLIES 2
Pragati11
Super User
Super User

Hi @Vanessa250919 ,

 

I am taking following sample data where I have a field named Location as a slicer and a card visual with this value:

Pragati11_1-1624562713409.png

When I select anything in the slicer that value is displayed in the card visual.

If I understand your requirement correctly, you want to display ALL in the card visual when nothing is selected in the slicer.

for that create the following measure:

Measure =
var t1 = SELECTEDVALUE('Table'[Location])
RETURN
IF(t1 = BLANK(), "ALL", t1)
 
Move this measure to card visual. Now if you don't select anything in the slicer, card visual shows ALL as below:
Pragati11_2-1624562854542.png

Make sure to use your column name in the above measure.

 

Let me know if this is what you were looking for.

 

Thanks,

Pragati

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

its perfect thanks ! 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors