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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
tangcy123
Helper I
Helper I

How to display the user count correctly group by order count?

Hi,

how to display the user count group by order count? 

There are 5 groups for order count as below:  1 , 2, 3-5, 6-10, 11+ , I would like to get user count base on the OrderGroup.

but it always display all user count 9 for the group 11+, but display 0 for other group,  who can help check it?  is something error in my DAX code?

 

tangcy123_0-1656579822015.png

 

tangcy123_1-1656580032328.png

tangcy123_2-1656580612403.png

 

 

DAX code for UserCountGroup:

 

 
UserCount =
IF(ISFILTERED('OrderGroup'[OrderGroup]),
CALCULATE(
DISTINCTCOUNT('Order'[userid_id]),
FILTER('Order',
AND(
COUNT('Order'[order_no]) <=SELECTEDVALUE('OrderGroup'[Max]),
COUNT('Order'[order_no]) >=SELECTEDVALUE(OrderGroup[Min])
)

)
),
DISTINCTCOUNT('Order'[userid_id] )
) + 0
1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @tangcy123 ;

Create two measure.

Count = CALCULATE(COUNT('Table'[id]),FILTER(ALL('Table'),[id]=MAX('Table'[id])))
Measure = 
 CALCULATE(DISTINCTCOUNT('Table'[id]),FILTER('Table',[Count]<=MAX('Group'[Max])&&[Count]>=MAX('Group'[Min])))

The final show:

vyalanwumsft_0-1656925480854.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @tangcy123 ;

Create two measure.

Count = CALCULATE(COUNT('Table'[id]),FILTER(ALL('Table'),[id]=MAX('Table'[id])))
Measure = 
 CALCULATE(DISTINCTCOUNT('Table'[id]),FILTER('Table',[Count]<=MAX('Group'[Max])&&[Count]>=MAX('Group'[Min])))

The final show:

vyalanwumsft_0-1656925480854.png


Best Regards,
Community Support Team _ Yalan Wu
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

@tangcy123 , Are you trying to use this to bucket a measure ? if yes refer

 

Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...


Dynamic Segmentation, Bucketing or Binning: https://youtu.be/CuczXPj0N-k

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.