This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is now in read-only for platform upgrade. Learn more
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
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |