Multiple Condition Text Return

  • Thread starter Gymclass14 via OfficeKB.com
  • Start date
G

Gymclass14 via OfficeKB.com

I am trying to get text to appear when a certain numerical amount is
entered. If the value in A3 is greater than and equal to 30,000 the return
is "Standard. If A3 is greater than or equal to 30,001 the return is
"Incentive". If A3 is greater than or equal to 42,000 the return is "Elite".
The text must appear in cell F3. Its confusing, but please help. Thanks in
advance.
 
T

T. Valko

This formula does what you want:

=IF(A3>=42000,"Elite",IF(A3>=30001,"Incentive",IF(A3>=30000,"Standard","")))

But.....is this a typo:
If the value in A3 is greater than and equal to 30,000 the return
is "Standard. If A3 is greater than or equal to 30,001 the return is

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top