March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
Could you please help me with DAX function or Powerquery to solve the below requirement? i need to have one final category for each keyword and organization group. if org & keyword is unique then need to retain the already found category in the final category column
Hi @chem094 ,
Please create the relationship and calculated column.
Final Category =
VAR tab =
FILTER ( 'Table', 'Table'[Customer] = EARLIER ( 'Table'[Customer] ) )
VAR Cus =
CALCULATE ( DISTINCTCOUNT ( 'Table'[Category] ), tab )
VAR Index =
CALCULATE ( MIN ( Category[Index] ), tab )
RETURN
IF (
Cus > 1,
CALCULATE (
MAX ( Category[CategoryOrder] ),
FILTER ( Category, Category[Index] = Index )
),
'Table'[Category]
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @chem094,
as the category is unique per customer I would recommend to use/adjust your customer dimension by creating a new column "Category" there. It's definitly easier than finding a way to put it in a measure.
Liked this post? More Content on:
https://www.youtube.com/channel/UC2lAgCgfyLCHsRv0h-ETBWQ
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |