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,
I am looking for your help finding out the DAX formula to create the following scenario.
thank you
Name | Country | New Column | ||
AA | XX | if AA has XX in country column, then return XX, else others. | ||
AA | Others | if AA has XX in country column, then return XX, else others. | ||
AA | Others | if AA has XX in country column, then return XX, else others. | ||
BB | XX | if BB has XX in country column, then return XX, else others. | ||
BB | XX | if BB has XX in country column, then return XX, else others. | ||
BB | Others | if CC has XX in country column, then return XX, else others. | ||
CC | Others | if CC has XX in country column, then return XX, else others. |
Solved! Go to Solution.
Please see if the following DAX resolves your issue:
Column =
CALCULATE ( MAX ( [Country] ), ALLEXCEPT ( Countries, Countries[Name] ) )
Is this what you are looking for?
https://1drv.ms/u/s!AiUZ0Ws7G26Rhgtn80K0FSafOSkl?e=aMacBk
Hi Rajul, but you haven't taken into consideration the Name in the formula?
@rajulshah the result is not as expected. I want to get XX, if it exists in the whole range of countries for Name=AA
so for each name, the formula should look into the whole range of country column, and if XX is found at least once, then return XX.
AA might have multiple lines, however in the country column it is either XX or others. So I want to do a kind of search, and if XX is found once, then return XX
Please see if the following DAX resolves your issue:
Column =
CALCULATE ( MAX ( [Country] ), ALLEXCEPT ( Countries, Countries[Name] ) )
Please try the below DAX formula. Please know that I have assumed that you want if there is any country present then we should get the value of country else Others.
Column =
IF ( [Country] <> "Others", [Country], "Others" )
Please let me know if this is not what you want.
@abukapsoun , please mark the post as solution if your issue is resolved. Thanks.
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 |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |