Forum Discussion

hawkeyes12's avatar
hawkeyes12
Frequent Visitor
6 years ago
Solved

Power BI Dax Formula

Hello,   I am trying to create a Measure in Power BI that will execute a measure only if "Select all" is chosen in a Slicer. Any ideas on how to incorporate this?   Here are some additional detai...
  • mahoneypat's avatar
    6 years ago

    You could use this approach:

     

    Conditional Measure = IF(ISFILTERED(Table[County]), BLANK(), [Your Measure])

     

    If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

    Regards,

    Pat