Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Excel question booleans

  • 25-08-2011 6:01pm
    #1
    Registered Users Posts: 16


    I'm looking to use a nested formula in Excel but it's wrecking my head.
    Here it is verbily (all cell locations are made up for clarity)
    If cell G4 is 50 then H4 will be G4*2
    but if G4 is 100 then H4 will be = G4
    And if G4 is 200 then H4 will be G4/2

    I tried using If but that only allows one condition. Is there any way of doing several conditions together.


Comments

  • Registered Users Posts: 16 johngavin2


    Figured it out
    =IF(A1=50,A1*2,IF(A1=100,A1,IF(A1=200,A1/2,)))


Advertisement