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:
What I now want to get help with is to calculate above but only include product_category = B.
Expected outcome:
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,
Solved! Go to Solution.
[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.
[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.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Welcome to the Power BI Community Show! Jeroen ter Heerdt will talk about the importance of Data Modeling.
User | Count |
---|---|
342 | |
99 | |
63 | |
51 | |
49 |
User | Count |
---|---|
327 | |
119 | |
84 | |
67 | |
63 |