CARD Visualization

Hello - thank you in advance.

I want to use the Card visualization to show the result of my filter. The issue I have is that when I choose All in the filter the Card visualization defaults to the first selection of the field. How can I make the Card say “All”

Example:

Filter = All

Card = Braves <- I want this to say "All"

 
Filter = New York

Card = Yankees

 etc

Thank you

What about a relationship between City and Team?

City Team
New York Yankees
Toronto Blue Jays
Pittsburgh Pirates

Then show the team on the card but you could filter on City??

I don’t know if that is what you are looking for.

@josevaras,

See if this measure gives you what you need.

CardSelection = 
IF (
    ISFILTERED ( MLB[City] ) = FALSE (),
    "All",
    IF (
        HASONEVALUE ( MLB[City] ),
        SELECTEDVALUE ( MLB[Team] ),
        CONCATENATEX ( ALLSELECTED ( MLB ), MLB[Team], ", " )
    )
)
1 Like

This worked - thanks