Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() OK - I have about 15 different cells which contain numerical values. I any of the cells are outside of the ranges I have set up wit validation, then I would like a text phrase to appear at the bottom o the document. I can use the "if" function to program the text phrase to appear, bu it only works with up to seven of the cells. Someone indicated that th 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 lik the text "Out of Range" to appear at the bottom of the worksheet. Th "out of range" needs to be entered if ANY of the values are outside o the spec. range. The example above is greatly simplified. The actual values and range are not all in the same row or columns. Any help is GREATLY appreciate -- tsammon ----------------------------------------------------------------------- tsammons's Profile: http://www.excelforum.com/member.php...fo&userid=3033 View this thread: http://www.excelforum.com/showthread.php?threadid=50109 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There might be a better way, however this is one way.
=IF(OR(A1B1,A2B2,A3B3,A4B4,A5B5,A6B6,A7B7,A 8B8,A9B9,A10B10),"Out of Range","In Range") I noticed that your ranges all start with "0". In order for the above formula to work, the range has to be the highest number in the range. For example, the first range would just be "1", the second "2", the third "1", the fourth "8", and so on. If you have to have it displayed as "0-1", then you could use a custom format on the cells. Right-click the range cells and select Format Cells. Select 'Custom'. Under 'Type, enter "0-0" (no quotes) HTH, Paul "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 the text "Out of Range" to appear 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. The example above is greatly simplified. The actual values and ranges are not all in the same row or columns. 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=501094 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF((A1=B1)*(A1<=C1)*(A2=B2)*(A2<=C2)*(A3=B3)*( A3<=C3)*(A4=B4)*(A4<=C4)*(A5=B5)*(A5<=C5)*(A6=B 6)*(A6<=C6)*(A7=B7)*(A7<=C7)*(A8=B8)*(A8<=C8)*(A 9=B9)*(A9<=C9)*(A10=B10)*(A10<=C10),"","OUTSIDE RANGE")
Using the table below. Adjust to your needs. A B C 1 1 0 1 2 2 0 2 3 3 0 1 4 4 0 8 5 5 0 2 6 6 0 2 7 7 0 1 8 8 0 9 9 9 0 3 10 10 0 7 You could also use the AND function, but it has a limit of 30. If any relation is not true it will return false. "tsammons" wrote: 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 the text "Out of Range" to appear 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. The example above is greatly simplified. The actual values and ranges are not all in the same row or columns. 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=501094 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Functions for "current" & "previous" month to calculate data | Excel Worksheet Functions | |||
Excel "Move or Copy" and "Delete" sheet functions | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
can we convert "2 days 16 hrs" to " 64hrs" using excel functions | Excel Worksheet Functions | |||
Please add a "sheet" function like "row" and "column" functions | Excel Programming |