• 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.

Multiple If Statement

slohman

Member
I need a formula to put in B91


If B88 is less than between 0-315 put the amount in B91 or if B89 is between 316-630 put the amount in B91 or if B90 is between 631 and 945 put the amount in B91


eg 200 metres is in B88 I need 200 to be placed in B91

or 453 metres is in B89 I need 453 to be placed in B91


etc
 
Hi ,


I am not sure I have understood you , but try this :


=IF(AND(B88>=0,B88<=315),B88,IF(AND(B89>=316,B89<=630),B89,IF(AND(B90>=631,B90<=945),B90,"What is to be done ?")))


You also need to decide the priority ; with the formula the way it is , if all three conditions are met , priority is given to the first ; is this OK ?


Narayan
 
Back
Top