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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.