Formula Help

B

BFiedler

How do I take a cells numeric value and see if it falls inbetween a
range of cells values.

IF(A1 falls between A2:A3, Yes,No)


A1 = 6
A2 = 1
A3 = 10
 
R

Rowan

15 minutes is a slightly unrealistic timeframe in which to expect an answer.

Anyway try:

=if(and(a1>a2,a1<a3),"Yes","No")

Hope this helps
Rowan
 
B

BenjieLop

BFiedler said:
I don't understand this forum..what is the deal..no one ever replies t
my questions. :mad:

At times, patience is a virtue in this forum. And to help you furthe
understand this forum, a "thank you" reply is usually appreciated whe
a reply is given.

Regards
 
Top