Multiple IF statements
Hello,
I'm trying to make an IF( formula for the following criteria.
If Tech is YES and Curved is YES, 650
If Tech is YES and Curved is NO, 500
If Tech is NO, 0
Thank you!
Best Answer
-
Thanks for that, so the formula I provided anything inside these brackets [ ] need to be the column names you're referencing.
Based on the screen shot it would go like this:
=IF(AND([Tech/Set Up Price]@row = "YES", [Is the frame curved?]@row = "YES"), 650,
IF(AND([Tech/Set Up Price]@row = "YES", [Is the frame curved?]@row = "NO"), 500, 0))
Let me know if that works.https://www.linkedin.com/in/zchrispalmer/
Answers
-
Hello @jordanlamagna
Something like this perhaps?
=IF(AND([Tech]@row = "YES", [Curved]@row = "YES"), 650, IF(AND([Tech]@row = "YES", [Curved]@row = "NO"), 500, 0))
If this doesn't work a screen shot would be helpful.
Let me know how it goes!https://www.linkedin.com/in/zchrispalmer/
-
Hi, you'd want to create a number of IF and AND statements. For example if your tech column was called TECH and curved column called Curved this would work:
=IF(AND(TECH@row = "Yes", Curved@row = "Yes"), 650, IF(AND(TECH@row = "Yes", Curved@row = "No"), 500, IF(TECH@row = "No", 0)))
-
-
Here's a sreenshot!
-
Thanks for that, so the formula I provided anything inside these brackets [ ] need to be the column names you're referencing.
Based on the screen shot it would go like this:
=IF(AND([Tech/Set Up Price]@row = "YES", [Is the frame curved?]@row = "YES"), 650,
IF(AND([Tech/Set Up Price]@row = "YES", [Is the frame curved?]@row = "NO"), 500, 0))
Let me know if that works.https://www.linkedin.com/in/zchrispalmer/
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.6K Get Help
- 435 Global Discussions
- 152 Industry Talk
- 496 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 508 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!