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

The ultimate Microsoft Fabric, Power BI, Azure AI & SQL learning event! Join us in Las Vegas from March 26-28, 2024. Use code MSCUST for a $100 discount. Register Now

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

Helpful resources

Announcements
March Fabric Community Update

Fabric Community Update - March 2024

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

Fabric Community Conference

Microsoft Fabric Community Conference

Join us at our first-ever Microsoft Fabric Community Conference, March 26-28, 2024 in Las Vegas with 100+ sessions by community experts and Microsoft engineering.

Fabric Partner Community

Microsoft Fabric Partner Community

Engage with the Fabric engineering team, hear of product updates, business opportunities, and resources in the Fabric Partner Community.