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! It's time to submit your entry. Live now!
Hi there.
I am just trying to do a simple If(or( measure but I have three conditions and this formula only accepts two conditions.
I would make a calculated column, but in this situation that won't work because this is all based on other measures.
Here is essentially what I would like:
Platinum Invoice Warning = if(or([Tech Bar Basic]>=3,[Tech Bar Intermediate]>=3),[Tech Bar Complex]>=3),"Warning","-")
Solved! Go to Solution.
Try this alternative
Platinum Invoice Warning =
IF (
[Tech Bar Basic] >= 3
|| [Tech Bar Intermediate] >= 3
|| [Tech Bar Complex] >= 3,
"Warning",
"-"
)
Try this alternative
Platinum Invoice Warning =
IF (
[Tech Bar Basic] >= 3
|| [Tech Bar Intermediate] >= 3
|| [Tech Bar Complex] >= 3,
"Warning",
"-"
)
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 41 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 150 | |
| 107 | |
| 64 | |
| 36 | |
| 36 |