View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Help with lookup or if functions

You could use Data Validation on column A with a Custom formula of

=AND(A2=--LEFT(B2,FIND("-",B2)-1),A2<=--MID(B2,FIND("-",B2)+1,7))

--

HTH

RP
(remove nothere from the email address if mailing direct)


"tsammons" wrote in
message ...

OK - I have about 15 different cells which contain numerical values. If
any of the cells are outside of the ranges I have set up with
validation, then I would like a text phrase to appear at the bottom of
the document.

I can use the "if" function to program the text phrase to appear, but
it only works with up to seven of the cells. Someone indicated that
the lookup function may work, but I can't seem to get it to.

Any ideas? See below for more info.

Value Range
1 0-1
2 0-2
3 0-1
4 0-8
5 0-2
6 0-2
7 0-1
8 0-9
9 0-3
10 0-7

In this example, since # 3 is outside of the spec. range, I would like
to enter the text "Out of Range" at the bottom of the worksheet. The
"out of range" needs to be entered if ANY of the values are outside of
the spec. range.

Any help is GREATLY appreciated.


--
tsammons
------------------------------------------------------------------------
tsammons's Profile:

http://www.excelforum.com/member.php...o&userid=30335
View this thread: http://www.excelforum.com/showthread...hreadid=500864