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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Vanessa250919
Helper V
Helper V

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors