Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
VaroonA
Regular Visitor

Adding a Card with condition

Hi People!

I'm new to PowerBI. I'm currently working on a report and I want to insert a card to show me some numbers based on certain conditions. 

My table has columns PersonID, Units Attempted amongst others. Each PersonID can have multiple separate Units Attempted.

My card needs to show a distinct count of PersonID when distinct count of Units Attempted is greater than 3. 

 

I hope that makes sense. Any help on this please?

Thanks

1 ACCEPTED SOLUTION
Hariharan_R
Solution Sage
Solution Sage

Hi

 Use the below expression.

Card =
VAR _table =
    SUMMARIZE (
        Persons,
        Persons[PersonID],
        "dCount", DISTINCTCOUNT ( Persons[UnitID] )
    )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( Persons[PersonID] ),
        FILTER ( _table, [dCount] > 3 )
    )

Sample Data,

Hariharan_R_0-1654867760164.png

Thanks

Hari

 

 

View solution in original post

2 REPLIES 2
VaroonA
Regular Visitor

Hi Hari!

Thanks a lot for this! It works 🙂

Hariharan_R
Solution Sage
Solution Sage

Hi

 Use the below expression.

Card =
VAR _table =
    SUMMARIZE (
        Persons,
        Persons[PersonID],
        "dCount", DISTINCTCOUNT ( Persons[UnitID] )
    )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( Persons[PersonID] ),
        FILTER ( _table, [dCount] > 3 )
    )

Sample Data,

Hariharan_R_0-1654867760164.png

Thanks

Hari

 

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.