Forum Discussion

AMBP73's avatar
AMBP73
Icon for Helper I rankHelper I
2 years ago
Solved

Card Visual to show 'Nil Selection'

Hello. I have a card visual that I would like to show current selection on a slicer. Could someone please advise on a dax measure to show "Nil Selected" on the card when no selection has been made o...
  • ChiragGarg2512's avatar
    2 years ago

     

    The use of isfiltered will help here.

    measure = if(not(isfiltered(column on which the card will be filtered)), "Nil Selection", output column/measure )