Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a dataset that includes multiple IDs and expiration buckets. Each ID should only have one count per bucket.
Dataset | |
ID | Expired |
1 | 30 |
1 | 0 |
1 | 30 |
2 | 60 |
2 | 90 |
3 | 30 |
3 | 30 |
3 | 30 |
Expected Result | |
Expired | Count |
30 | 2 |
60 | 1 |
90 | 1 |
Thanks!
Solved! Go to Solution.
@KVPBI1 , Use a measure
Distinctcount(Table[ID]) in a visual with Expired
or calculate(Distinctcount(Table[ID]), filter(Table, table[Expired] <>0 ))
Hi @KVPBI1 ,
Or you can use the functions provided by power bi to achieve the results you want. Please refer to the gif below.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@KVPBI1 , Use a measure
Distinctcount(Table[ID]) in a visual with Expired
or calculate(Distinctcount(Table[ID]), filter(Table, table[Expired] <>0 ))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
9 | |
8 | |
8 |