Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
daxlearner
Frequent Visitor

How to combine 2 If Conditions in Power BI(Data- Direct Query Mode)

Hello  Experts,I need help with Power Bi Dax ,Here i need to join 2 If Condtions in one column,getting data from Direct query.Can anyone Please help me

Ex:

1St Condition -IF(Color ='ABC','EFG','IJK')

2nd Condition IF ( Shape= 'Circle','Square','Traingle')

Expected Result : EFG

                           Square

                            IJK

                            Triangle

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @daxlearner ,

 

According to my knowledge, you can use switch function to achieve this goal. Please try something like this:

 

Measure =
SWITCH (
    TRUE (),
    Color = "ABC", "EFG",
    Color <> "ABC", "IJK",
    Shape = "Circle", "Square",
    Shape <> "Circle", "Traingle"
)

 

Note: the logic of how to combine the two If conditions is not very cleary, you may need to modify the DAX, or provide more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Refer to:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

 

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-jianboli-msft
Community Support
Community Support

Hi @daxlearner ,

 

According to my knowledge, you can use switch function to achieve this goal. Please try something like this:

 

Measure =
SWITCH (
    TRUE (),
    Color = "ABC", "EFG",
    Color <> "ABC", "IJK",
    Shape = "Circle", "Square",
    Shape <> "Circle", "Traingle"
)

 

Note: the logic of how to combine the two If conditions is not very cleary, you may need to modify the DAX, or provide more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Refer to:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

 

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

daXtreme
Solution Sage
Solution Sage

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.