Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi :) Is there a way to create an IF statement that will categorize a column
IF A1 = < $1,000,000 then < $1M IF A1 = $1,000,000 - $4,999,999 then $1-$4M If A1 = $5,000,000 then +$5M Thanks |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
H,
=IF(A1<1000000,"< $1M",IF(A1=5000000,"+$5M","$1-$4M")) then copy down. HTH, Bernie MS Excel MVP "H" wrote in message ... Hi :) Is there a way to create an IF statement that will categorize a column IF A1 = < $1,000,000 then < $1M IF A1 = $1,000,000 - $4,999,999 then $1-$4M If A1 = $5,000,000 then +$5M Thanks |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
=LOOKUP(A9,{0;1000001;5000000},{"<$1M";"$1 - $4M";"+ $5M"})
hth -- pleae click yes if it was helpfull regards from Brazil Marcelo "H" escreveu: Hi :) Is there a way to create an IF statement that will categorize a column IF A1 = < $1,000,000 then < $1M IF A1 = $1,000,000 - $4,999,999 then $1-$4M If A1 = $5,000,000 then +$5M Thanks |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi,
Here is a nifty alternative - create the following custom format: [<1000000]"< $1M";[<4999999]"$1-$4M";"+$5M" Select the cells with the number and choose Format, Cells, Number tab, Custom and enter the above on the Type line. -- If this helps, please click the Yes button. Cheers, Shane Devenshire "H" wrote: Hi :) Is there a way to create an IF statement that will categorize a column IF A1 = < $1,000,000 then < $1M IF A1 = $1,000,000 - $4,999,999 then $1-$4M If A1 = $5,000,000 then +$5M Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA question | Excel Worksheet Functions | |||
where can I see my question and answer? Yesterday I ask a question | Excel Discussion (Misc queries) | |||
Newbie Question - Subtraction Formula Question | Excel Discussion (Misc queries) | |||
The question is an excel question that I need to figure out howto do in excel. | Excel Worksheet Functions | |||
Possible And If Question | Excel Worksheet Functions |