This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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
Solved! Go to Solution.
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,
Thanks
Hari
Hi Hari!
Thanks a lot for this! It works 🙂
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,
Thanks
Hari
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |