Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
IF a cell A's value is greater than 10 and less than 19 then Cell B equals 1,
IF A2 is between 20 and 29 then B2 equals 2, etc, etc, I've tried every iteration of IF statements that I know of and I'm not getting what I want. Thanks! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe
=int(A2/10) "Garnet" wrote: IF a cell A's value is greater than 10 and less than 19 then Cell B equals 1, IF A2 is between 20 and 29 then B2 equals 2, etc, etc, I've tried every iteration of IF statements that I know of and I'm not getting what I want. Thanks! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try this. Notice I start with the HIGHEST first
=IF(A229,3,IF(A219,2,IF(A29,1,""))) -- Don Guillett SalesAid Software "Garnet" wrote in message ... IF a cell A's value is greater than 10 and less than 19 then Cell B equals 1, IF A2 is between 20 and 29 then B2 equals 2, etc, etc, I've tried every iteration of IF statements that I know of and I'm not getting what I want. Thanks! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There is probably a better way... but here's what I would do...
=IF(AND(A510,A5<19),1,IF(AND(A520,A5<29),2,...)) "Garnet" wrote: IF a cell A's value is greater than 10 and less than 19 then Cell B equals 1, IF A2 is between 20 and 29 then B2 equals 2, etc, etc, I've tried every iteration of IF statements that I know of and I'm not getting what I want. Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
trying to make a formula for percent if greater than a value | Excel Discussion (Misc queries) | |||
i need to make a formula that adds up my hours after my 40 hours | Excel Discussion (Misc queries) | |||
I wish to make a formula that adds dollars in 1 column if a date . | Excel Worksheet Functions | |||
Can I make a formula in Excel to display result in same cell? | Excel Worksheet Functions | |||
How to make a formula with < or> in a cell | Excel Discussion (Misc queries) |