Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I am a beginner 🙂
I need to nest several switch.
Here is the idea (i am creating a new column) :
- If in column A there is the expression "Smart", then return "Idiot", if there is "Green", the return "Color", else return Column A. Up to here i can manage SWITCH(Column A;"Smart";"Idiot";"Green";"Color";"Column A")
- But here is the thing, I would like, in the same created column, to test the column B also.
Maybe you have a solution?
Solved! Go to Solution.
Hi @Anonymous,
Please see the below.
Column =
SWITCH(
TRUE,
YourTable[Column A] = "Smart", "Idiot",
YourTable[Column B] = "Tiger", "Animal",
YourTable[Column B]
)
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
You Can use SWITCH with TRUE as a first argument like below.
Column =
SWITCH(
TRUE,
YourTable[Column A] = "x" && YourTable[Column B] = "y", "x AND y",
YourTable[Column A] = "x" || YourTable[Column B] = "y", "x OR y",
"otherwise W"
)
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Mariusz ,
thank you for your answer, but maybe I wasn't clear enough.
In the new column, I need evaluate several expression at once and return different results depending on the value.
So, if in column A there is the value "Smart", then return "Idiot" or if in Column B there is the value "Tiger", then return "Animal". Else, column B.
Or maybe I didn't understand your answer 🙂
Thank you in advance !
Hi @Anonymous,
Please see the below.
Column =
SWITCH(
TRUE,
YourTable[Column A] = "Smart", "Idiot",
YourTable[Column B] = "Tiger", "Animal",
YourTable[Column B]
)
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you !!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!