Between function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone have a simple way to determine if a value is between two others?
Example

Act# Balance
1 100
2 200
3 300
4 400

Want to know which ones are more than 100 but less than 400.
 
You can use the AND function. Try =AND(B2>100,B2<400) in cell C2 of
your example. Then copy it down.

- John
 
You can use the AND function. Try =AND(B2>100,B2<400) in cell C2 of
your example. Then copy it down.

- John
 
thank you. that works much better then the nested if statments i used. It
will be a huge help.
Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top