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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
KVPBI1
New Member

Formula to return a count for given criteria

I have a dataset that includes multiple IDs and expiration buckets. Each ID should only have one count per bucket.

 

Dataset 
IDExpired
130
10
130
260
290
330
330
330

 

Expected Result
ExpiredCount
302
601
901

 

Thanks!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@KVPBI1 , Use a measure

 

Distinctcount(Table[ID]) in a visual with Expired

 

or calculate(Distinctcount(Table[ID]), filter(Table, table[Expired] <>0 ))

View solution in original post

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @KVPBI1 ,

 

Or you can use the functions provided by power bi to achieve the results you want. Please refer to the gif below.

vchenwuzmsft_0-1664784348338.gif

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.

 

amitchandak
Super User
Super User

@KVPBI1 , Use a measure

 

Distinctcount(Table[ID]) in a visual with Expired

 

or calculate(Distinctcount(Table[ID]), filter(Table, table[Expired] <>0 ))

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors