Forum Discussion

Rnaval's avatar
Rnaval
Post Partisan
2 years ago
Solved

Need help with a Card

I'm having an issue with the total count displayed in a card not changing when selecting a specific value in a Slicer. I'm using a filtered value in this card. Other cards on my page which are not using a filtered value are working just fine. Not sure how to get the card with the filtered value to work properly.

  • Hi Rnaval I already provided the DAX

     

    Count of Severity = 
    IF(
        ISBLANK(
            COUNTA('Extract'[Severity])),
        COUNTA('Extract'[Severity])+0,
        COUNTA('Extract'[Severity]))

    Follow the If blank, the Measure +0

    If your requirement is solved, please make sure to MARK AS SOLUTION and help other users find the solution quickly. Please hit the LIKE button if this comment helps you.

    Thanks
    Pijush
    www.MyAccountingTricks.com 
    https://www.youtube.com/MyAccountingTricks

11 Replies