IF(AND(OR Statement
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
Best Answer
-
@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
-
@nhornCGT =IF(AND([Specialty]@row = "type1", [Monthly Average Billings]@row >= 50000)), "Yes", IF(AND([Specialty]@row = "type2", [Monthly Average Billings]@row >= 30000), "Yes", "No")
You don't need the OR as you are just using this logic
Type1 meets 50000 = Yes / Type2 meets 30000 = Yes / No
-
Thank you for the response. I'm getting #unparaseable. When I remove the second statement, it works perfectly but does not seem like the second IF(AND statement.
I appreciate your help. Thoughts?
-
@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"))
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 454 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!