Forum Discussion

Tober1996's avatar
Tober1996
Helper I
6 years ago
Solved

Filtered Options as dynamic title

Hello community, I'd like to get the selected filter (in my case these are cities) as a title on my dashboard. This measure works fine, when nothing or ONE option is selected, but I also want to get...
  • Nathaniel_C's avatar
    Nathaniel_C
    6 years ago

    Hello Tober1996 ,
    Based on the above logic, there is a simpler way.

    Selected City Name = IF(ISFILTERED(myTable[Cities]), "Selected: " & CONCATENATEX(VALUES(myTable),myTable[Cities],", "),"Selected: All cities ")

     
    Let me know if you have any questions.

    If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
    Nathaniel