When selecting a name in a slicer, the state appears in the card. When nothing is selected in the slicer, (Blank) appears. How do you not display Blank in the card when nothing is selected? I want it to say either select value or return nothing.
State Located =
VAR ConCat =
CALCULATE (
CONCATENATEX (
VALUES ( âAirport State Locationâ[State Abbreviation] ),
âAirport State Locationâ[State Abbreviation],
â,â
)
)
VAR IsItFiltered =
IF ( ISFILTERED ( âAirport State Locationâ[Data Collection Site Name] ), ConCat, âNo Airport Selectedâ )
RETURN
IsItFiltered