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

Count number of Items per Order

Hi!

My data-set consists of order rows with order_numers including one or multiple products. I would like to count number of products (items) in each order. I get it to work on total, which means I include all item and are not using any filters. The formula I have used for that is the following: 

Items per Order =
CALCULATE(COUNT(SALES[product_key]),
ALLEXCEPT(SALES, SALES[order_number]))

 

What I now want to get help with is to calculate above but only include product_category = B

 

Expected outcome:

mg_2000_0-1625230696082.png

 

You find some sample data through this link:
https://drive.google.com/file/d/1fIlcHbCpBfh1b-ajGMdmNJBS7Nru4VTY/view?usp=sharing

 

Please, let me know if any questions - Happy for any support I can get!

 

Thanks, 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

[Items per Order (B cat.)] =
var CurrentOrderNumber = Sales[order_number]
return
    COUNTX(
        filter(
            Sales,
            Sales[order_number] = CurrentOrderNumber
            &&
            RELATED( Products[product_category] ) = "B"
        ),
        Sales[product_key]
    )

In calculated columns in fact tables you should never use CALCULATE.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

[Items per Order (B cat.)] =
var CurrentOrderNumber = Sales[order_number]
return
    COUNTX(
        filter(
            Sales,
            Sales[order_number] = CurrentOrderNumber
            &&
            RELATED( Products[product_category] ) = "B"
        ),
        Sales[product_key]
    )

In calculated columns in fact tables you should never use CALCULATE.

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.