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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Items Per Order - DAX Measure

Hi Experts

 

How would you calculate the items per order based on the sample data in the table below..

For the first Order ID we have one item ordered and the distinct count of the Order Id = 1 so 1/1 = 1

 

Items Per Order = SUM(FACTSalesOrderTable[total_qty_ordered])/DISTINCTCOUNT(FACTSalesOrderTable[increment_id])

 

QTYOrder ID Answer
110502 1
210503 6
310503 6
110503 6
1 ACCEPTED SOLUTION

@Anonymous , Try like

divide(SumX(filter(allselected(FACTSalesOrderTable) , FACTSalesOrderTable[Order ID] = max(FACTSalesOrderTable[Order ID])), FACTSalesOrderTable[Qty]), distinctcount(FACTSalesOrderTable[Order ID]))

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

@Anonymous , Based on what I got. I think it should be like

divide(count(FACTSalesOrderTable[Order ID]), distinctcount(FACTSalesOrderTable[Order ID]))

 

 

Anonymous
Not applicable

Has to be the order qty assoicated with that Order ID...

Anonymous
Not applicable

hi Amit so for the second Order ID we have ordered 6 items and our distinctcount of order ID is 1 - hence 6/1 = 6 items per order....logic

@Anonymous , do you need lines or qty. I thought lines

Sum qty , distinct count of Order ID

divide(Sum(FACTSalesOrderTable[Qty]), distinctcount(FACTSalesOrderTable[Order ID]))

 

if you need line below , use count

 

divide(Sum(FACTSalesOrderTable[Qty]), count(FACTSalesOrderTable[Order ID]))

Anonymous
Not applicable

Not getting the right answer.....i am expecting the results as per the table....

@Anonymous , Try like

divide(SumX(filter(allselected(FACTSalesOrderTable) , FACTSalesOrderTable[Order ID] = max(FACTSalesOrderTable[Order ID])), FACTSalesOrderTable[Qty]), distinctcount(FACTSalesOrderTable[Order ID]))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.