IF(AND's and IF(OR's

I have the below formula working to assign a price pursuant to particular job's complexity.

=IF(COMPLEXITY517 = "LOW", 1000, IF(COMPLEXITY517 = "MID", 1500, IF(COMPLEXITY517 = "HIGH", 2000, IF(COMPLEXITY517 = "HQP", 2500))))

However, I have 2 tiers of customer pricing that i'd like to track. The above covers +90% of the entries. However, for example, if the customer is Widgets Inc, the prices would be 820, 1250, 1750, 2250.

How would i go about keeping the above formula while adding Widget's pricing structure?

I've tried several variations of the below formula to invariable failure

=IF(CUSTOMER517 = β€œWIDGET”, IF(COMPLEXITY517 = "LOW", 850, IF(CUSTOMER517 = β€œWIDGET”, IF(COMPLEXITY517 = "MID", 1250,IF(CUSTOMER517 = β€œWIDGET”, IF(COMPLEXITY517 = "HIGH", 1750, IF(CUSTOMER517 = β€œWIDGET”, IF(COMPLEXITY517 = "HQP", 2250, IF(COMPLEXITY517 = "LOW", 1000, IF(COMPLEXITY517 = "MID", 1500, IF(COMPLEXITY517 = "HIGH", 2000, IF(COMPLEXITY517 = "HQP", 2500))))))))))))

Best Answers

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!