Forum Discussion

nanacobsbs's avatar
nanacobsbs
Helper I
3 years ago
Solved

switch DAX

I want show the regions which selected in the slicer in the card visual. I have created the following code measure. To Show "Global"in the card when all regions are checked in the slicer, which c...
  • FreemanZ's avatar
    3 years ago

    hi nanacobsbs 

    try to plot the card with such measure:

    RegionSelection = 
    IF(
        COUNTROWS(ALLSELECTED(Regions[Regions]))=COUNTROWS(ALL(Regions[Regions])),
        "All",
        CONCATENATEX(
            ALLSELECTED(Regions[Regions]),
            Regions[Regions],
            ","
        )
    )

     

    it works like this: