Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, I want to apply two conditions from two different table . please help with correct power bi conditional formula.
If system [trade] = exception [trade]&&System [customer code] = exception [customer code] then "Exception" orelse "No Exception"
Solved! Go to Solution.
@Anonymous , are you trying to create a new column or new measure
In the case of a new column
new column in system
if(isblank(countx(filter(system, system[trade] = exception[trade] && System[customer code] = exception[customer code]),system[trade] ) ), "No Exception" ,"Exception")
new column exception
if(isblank(countx(filter(exception, system[trade] = exception[trade] && System[customer code] = exception[customer code]),exception[trade] ) ), "No Exception" ,"Exception")
Also refer: https://www.youtube.com/watch?v=czNHt7UXIe8
@Anonymous , are you trying to create a new column or new measure
In the case of a new column
new column in system
if(isblank(countx(filter(system, system[trade] = exception[trade] && System[customer code] = exception[customer code]),system[trade] ) ), "No Exception" ,"Exception")
new column exception
if(isblank(countx(filter(exception, system[trade] = exception[trade] && System[customer code] = exception[customer code]),exception[trade] ) ), "No Exception" ,"Exception")
Also refer: https://www.youtube.com/watch?v=czNHt7UXIe8
Try this
IF(
AND(
[Condition 1] = TRUE(),
[Condition 2] = TRUE()
),
"Exception",
"No Exception"
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 11 | |
| 8 | |
| 8 | |
| 8 |