Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do you make a formula to state if a number is greater than one number but
less than another number. My example is: if d10 is greater than b20 but less than b20+1, then b10, if not, b20. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(AND(D10B20,D10<B20+1)<B10,B20)
-- HTH Bob Phillips (remove nothere from the email address if mailing direct) "ERG" wrote in message ... How do you make a formula to state if a number is greater than one number but less than another number. My example is: if d10 is greater than b20 but less than b20+1, then b10, if not, b20. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() =IF(AND(D10B20,D10<(B20+1)),B10,B20) Cheers, Steve -- SteveG ------------------------------------------------------------------------ SteveG's Profile: http://www.excelforum.com/member.php...fo&userid=7571 View this thread: http://www.excelforum.com/showthread...hreadid=504895 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "ERG" wrote: How do you make a formula to state if a number is greater than one number but less than another number. My example is: if d10 is greater than b20 but less than b20+1, then b10, if not, b20. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF((B20 + 1) D10,B20,D10)
"ERG" wrote: How do you make a formula to state if a number is greater than one number but less than another number. My example is: if d10 is greater than b20 but less than b20+1, then b10, if not, b20. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try =IF(D10<B20+1,IF(D10B20,D10,B20),B20)
"ERG" wrote: How do you make a formula to state if a number is greater than one number but less than another number. My example is: if d10 is greater than b20 but less than b20+1, then b10, if not, b20. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Matching Values from an Array | Excel Worksheet Functions | |||
I want the greater number of 2 cells to show in a separate cell | Excel Discussion (Misc queries) | |||
I want the greater number of 2 cells to show in a separate cel | Excel Discussion (Misc queries) | |||
I want the greater number of 2 cells to show in a separate cell | Excel Discussion (Misc queries) | |||
Linking two IF statements together | Excel Discussion (Misc queries) |