Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am measuring a selection of cast metal parts. What formula do I use to
determine whether the dimension is highrer than the upper limit or lower than the lower limit. The high limit is .7129", the low limit is .5943" |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Presuming value to work with is in A1, use this formula: =IF(A10.7129,"HIGH",IF(A1<0.5943,"LOW",A1)) -- Lotus123 ------------------------------------------------------------------------ Lotus123's Profile: http://www.excelforum.com/member.php...o&userid=28611 View this thread: http://www.excelforum.com/showthread...hreadid=526569 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Lotus123 wrote...
Presuming value to work with is in A1, use this formula: =IF(A10.7129,"HIGH",IF(A1<0.5943,"LOW",A1)) .... More condensed than the other responses, but why not use a table lookup? =LOOKUP(A1,{0;0.5943;0.7129},{"LOW";"OK";"HIGH"}) Note that in the wonderful world of Excel, if A1 contained text or boolean (TRUE/FALSE) values, the IF formula would invariably return HIGH since text and both boolean values are treated as greater than any number value, but the LOOKUP formula returns #N/A when A1 is text or boolean. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
is number between values | Excel Worksheet Functions | |||
Return SEARCHED Column Number of Numeric Label and Value | Excel Worksheet Functions | |||
Positioning Numeric Values Resulting from 6 Column Array Formula | Excel Worksheet Functions | |||
Help with function to sum values in a worksheet depending on account number | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions |