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
Pandadev
Post Prodigy
Post Prodigy

Replicate Dax SWITCH code in Query editor

Hi is there a way to add a custom column in query editor and replicate this dax code

Res = SWITCH(TRUE(),
AND([Event Code]="Q3", [MarketSector]="Commercial"), "AW",
AND([Researcher]<>"SLR", [OperatorTypeCode]="16"), "SLR",
AND([Researcher]="SLR", [OperatorTypeCode]="16"), "SLR",
AND([Event Code]="21", [MarketSector]="Commercial" && [Manufacturer]<>"Bing"), "NF",
AND([Event Code]="61", [MarketSector]="Commercial" && [Manufacturer]<>"Bing"), "NF",
AND([Event Code]="71", [MarketSector]="Commercial" && [Manufacturer]<>"Bing"), "NF",
AND([Event Code]="81", [MarketSector]="Commercial" && [Manufacturer]<>"Bing"), "NF",
AND([Event Code]="21", [MarketSector]="Commercial" && [Manufacturer]="Bing"), "MB",
AND([Event Code]="61", [MarketSector]="Commercial" && [Manufacturer]="Bing"), "MB",
AND([Event Code]="71", [MarketSector]="Commercial" && [Manufacturer]="Bing"), "MB",
AND([Event Code]="81", [MarketSector]="Commercial" && [Manufacturer]="Bing"), "MB",
 
AND([Researcher]="", [Researcher]<>"JMY"), "ZZ",
 
[Researcher]
)
1 ACCEPTED SOLUTION

Hi @Pandadev ,

 

Your closing brackets are wrong.

 

IF ([Event Code]="Q3" AND [MarketSector]="Commercial") THEN "AW"
ELSE IF ([Researcher]<>"SLR" AND [OperatorTypeCode]="16") THEN "SLR" 

 

There is a nice example on the following blog:
https://www.fourmoo.com/2018/11/27/multiple-conditions-for-a-conditional-column-in-power-query/

Pragati11_0-1617810488532.png

 

Thanks,

Pragati

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

View solution in original post

6 REPLIES 6
Pragati11
Super User
Super User

Hi @Pandadev ,

 

You can add a custom column on Query Editor in Power BI using IF-ELSE multiple conditional statements. Read more about it here: https://docs.microsoft.com/en-us/powerquery-m/m-spec-conditionals

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Thanks I looked at that solution , but I need it to check two different criteria , which was not available in the conditional column

in this example  below it is looking at Event Code =Q3 and MarketSector = Commercial , then change to AW

AND([Event Code]="Q3", [MarketSector]="Commercial"), "AW",

Hi @Pandadev ,

 

It will be a simple IF AND ELSE condition. Something like below: (you can find many examples online)

 

 IF([Event Code]="Q3" AND [MarketSector]="Commercial") THEN "AW" ELSE IF ......

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

I tried this but it shows an error on first AND , token comma expected

IF(
[Event Code]="Q3" AND [MarketSector]="Commercial") THEN "AW"
ELSE IF
[Researcher]<>"SLR" AND [OperatorTypeCode]="16") THEN "SLR" ))

Hi @Pandadev ,

 

Your closing brackets are wrong.

 

IF ([Event Code]="Q3" AND [MarketSector]="Commercial") THEN "AW"
ELSE IF ([Researcher]<>"SLR" AND [OperatorTypeCode]="16") THEN "SLR" 

 

There is a nice example on the following blog:
https://www.fourmoo.com/2018/11/27/multiple-conditions-for-a-conditional-column-in-power-query/

Pragati11_0-1617810488532.png

 

Thanks,

Pragati

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Thanks for the example , I have now managed to get it to work 

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.