• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Nested If for shipping calculator

dglazer

New Member
Hi: I have a complicated nested if formula that I need to design for an assignmentand I'm having some trouble:


Basically,

If cell 1 ="CASE" and cell 2 < 200 and cell 3 = "China" then shipping cost is $65

If cell 2 < 300 and cell 3 = "China" then shipping cost is $95

all others are $125


Can't figure out how to get it to work because basically parts of the first and second formulas overlap each other.


Any assistance would be appreciated!!!


Thank you,


Dyan
 
Since the first two conditional statements both need cell 2 < 200 and cell 3 = China, we test those first, and then differentiate from there. Formula becomes:

=IF(AND(Cell 2<300,Cell 3="China"),IF(AND(cell 1="CASE",cell 2<200),65,95),125)
 
Back
Top