Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to Solution.
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.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
9 |