Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Card Visualization don't work with Measure as a Filter

Hello community,   I am very new to PowerBI. I am trying to display the unique record for the Address field that has more than 1 ID for the Card Visualization (or any big number display) on PowerBI...
  • mahoneypat's avatar
    5 years ago

    You can use a measure like this for your card visual.  Replace Table with your actual table name.

     

    Companies with Multiple IDs =
    COUNTROWS (
        FILTER (
            VALUES ( Table[Company] ),
            CALCULATE (
                DISTINCTCOUNT ( Table[ID] )
            ) > 1
        )
    )

     

    Regards,

    Pat