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
- 64.4K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 464 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!