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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
jakeryan56
Advocate II
Advocate II

DAX If(or( - More than two conditions

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","-")

 

 

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@jakeryan56

 

Try this alternative

 

Platinum Invoice Warning =
IF (
    [Tech Bar Basic] >= 3
        || [Tech Bar Intermediate] >= 3
        || [Tech Bar Complex] >= 3,
    "Warning",
    "-"
)

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

@jakeryan56

 

Try this alternative

 

Platinum Invoice Warning =
IF (
    [Tech Bar Basic] >= 3
        || [Tech Bar Intermediate] >= 3
        || [Tech Bar Complex] >= 3,
    "Warning",
    "-"
)

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.