=IF(AND([Tech/Set Up]@row = "yes", OR([Is the frame curved? ]@row = "Yes", [Frame Type]@row = "Neo Modular System")), 650, IF(AND([Tech/Set Up]@row = "yes", [Is the frame curved? ]@row = "No"), 500, 0)
See if this adjustment to your original formula works for you. All I did was add an OR Statement to your original AND statement.
How do I create multiple IF statements in a function
Here is my current formula for the column "Tech Setup Price"
=IF(AND([Tech/Set Up]@row = "yes", [Is the frame curved? ]@row = "Yes"), 650, IF(AND([Tech/Set Up]@row = "yes", [Is the frame curved? ]@row = "No"), 500, 0))
This does not include the below added variable of the Neo Modular System, so I want to add that variable. Basically, here is what I want:
$500 if tech set up is Yes and the frame is not curved
$650 if tech set up is Yes and EITHER the frame is curved OR the Frame Type is Neo Modular System
$0 if tech set up is No
Is this possible, or is this too much information for one function?
Thanks!
Best Answer
-
=IF(AND([Tech/Set Up]@row = "yes", OR([Is the frame curved? ]@row = "Yes", [Frame Type]@row = "Neo Modular System")), 650, IF(AND([Tech/Set Up]@row = "yes", [Is the frame curved? ]@row = "No"), 500, 0)
See if this adjustment to your original formula works for you. All I did was add an OR Statement to your original AND statement.If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
Answers
-
The below should work:
=IF([Tech/Set Up]@row = "Yes", 500 + IF(OR([Is the frame curved?]@row = "Yes", [Frame Type]@row = "Neo Modular System"), 150, 0), 0)
-
=IF(AND([Tech/Set Up]@row = "yes", OR([Is the frame curved? ]@row = "Yes", [Frame Type]@row = "Neo Modular System")), 650, IF(AND([Tech/Set Up]@row = "yes", [Is the frame curved? ]@row = "No"), 500, 0)
See if this adjustment to your original formula works for you. All I did was add an OR Statement to your original AND statement.If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Thank you! I thought I had tried using IF(OR, but I must've inputted it wrong somewhere.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.5K Get Help
- 434 Global Discussions
- 153 Industry Talk
- 494 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 506 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!