View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Rosenfeld
 
Posts: n/a
Default Help Requested on Formula

On Sun, 2 Apr 2006 12:20:01 -0700, Rich Rosier
wrote:

Here's my challenge:

If a cell (not the cell I'm writing the formula in) has a $amount that is
greater than $10,000, but less than $19,999, then I would like the letter "C"
to show up in the cell that I'm writing the formula in. However, if the cell
has a $amount that is greater than $20,000, but less than $29,999, then I
would like the letter "B" to show up in the cell. Next, if the cell has a
$amount that is greater than $30,000, then I would like the letter "A" to
show up in the cell. Lastly, if the cell has a $amount that is less than
$10,000, then I would like the words "Not an EDPR Acct" to show up in the
cell.

Can anyone help me craft a formula that would do this?

Thanks very much,
Rich Rosie


Just another method:

=CHOOSE(MIN(INT(A1/10000)+1,4),"Not an EDPR Acct","C","B","A")


--ron