IF(AND(OR Statement

Options

I need assistance with a formula.

=IF(AND(OR([Specialty]@row = "type1", [Monthly Average Billings]@row >= 50000), [Specialty]@row = "type2", [Monthly Average Billings]@row >= 30000),"Yes","No")))

Type1 meets 50000 = Yes / Type1 doesn't meet 50000 = No

or

Type2 meets 30000 = Yes / Type2 doesn't meet 30000 = No

Tags:

Best Answer

  • Eric Law
    Eric Law ✭✭✭✭✭✭
    Answer ✓
    Options

    @nhornCGT Sorry, had parenthesis in the wrong place. Try this

    =IF(AND([Specialty]@row = "type1", [Monthly Average Billings]@row >= 50000), "Yes", IF(AND([Specialty]@row = "type2", [Monthly Average Billings]@row >= 30000), "Yes", "No"))

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!