Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello all.
I have the following problem: My dataset has a bunch of rows that correspond to each product ordered by a customer, and each product has a family type associated:
NumOrder SKU Family type
1 1234 Baby
1 1245 Kid
This example represents an order of 2 units, with 2 different family types. The family types that I have are: Baby, Kid, Woman, Men, Men&Acessories; Woman&Acessories, Shoes.
I want to create a calculated column that if an order has only Baby, display "baby", and so on. But if an order has at least one product that is baby and kid, displays "Baby_Kid" and so on. For all combinations.
Can you help me?
Thank you!
Solved! Go to Solution.
@Anonymous
I did not fully understand but this should be close:
Column =
CONCATENATEX(
CALCULATETABLE( VALUES(Table4[Family Type]) , ALLEXCEPT(Table4,Table4[Number])),
Table4[Family Type],"|"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
I did not fully understand but this should be close:
Column =
CONCATENATEX(
CALCULATETABLE( VALUES(Table4[Family Type]) , ALLEXCEPT(Table4,Table4[Number])),
Table4[Family Type],"|"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you for your reply.
It is almost this. The problem is that Child| Baby and Baby| Child is the same category but I have two different categories.
@Anonymous
Then you need to provide a propper example and show all possible scenarios.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
22 | |
21 | |
19 | |
13 | |
12 |
User | Count |
---|---|
41 | |
31 | |
23 | |
22 | |
22 |