Complicate function

  • Thread starter Thread starter Sakis
  • Start date Start date
S

Sakis

Hi,

Could someone please help me with the below function?

IF(AK8<30),"fair",
IF(30,001<AK8<60),"good",
IF(60,001<AK8<80),"very good",
IF(AK8>80,001),"ecxellent"))

I need this to become a function in one cell....

Any idea how can I do this?
 
Sakis said:
Hi,

Could someone please help me with the below function?

IF(AK8<30),"fair",
IF(30,001<AK8<60),"good",
IF(60,001<AK8<80),"very good",
IF(AK8>80,001),"ecxellent"))

I need this to become a function in one cell....

Any idea how can I do this?

Try this:
=IF(AK8>80,"excellent",IF(AK8>60,"very good",IF(AK8>30,"good","fair")))
 
One way:

=if(ak8<30,"fair",if(ak8<60,"good",if(ak8<80,"Very Good","Excellent")))
 
What is it doing? Do you get an error? Do you just get the wrong selection?
Tell us!
 
Yes, sorry,
the usual error comes up. The one that usually comes up when there is
mistake in any function!!

Thanks again
 
What's in ak8?
What did you expect and what did the formula return?

If you're not in the USA, you may have to replace the commas (,) with semicolons
(;).


Thank you also but it does not work....
 

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

Similar Threads


Back
Top