I have three products, and each of them has 2 price sets: Retail and Web.
I'm trying to make it easy on the client so that they can just choose "web/retail/deposit" from a dropdown and then "8oz/gallon/25lb bulk" from a dropdown and have the prices calculated automatically.
Right now I have it so that they can choose "retail/web" and it will calculate according to those prices, and the code is working, but I'm struggling to add a third IF for the "deposit", where it would SUBTRACT the cost of the product * quantity. Here's what I have:
=IF(F13="Web", IF(E13="8oz", (3.19*C13), IF(E13="Gallon", (29.99*C13),
IF(E13="25lb Bulk", (82.99*C13)))), (IF(F13="Retail", IF(E13="8oz", (2.2*C13),
IF(E13="Gallon", (29.99*C13), IF(E13="25lb Bulk", (82.99*C13)))))))
How would I go about adding another IF statement depending on a new selection "deposit"?