Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
6 | |
6 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
3 |