IF

G

Guest

I have used the ifIF example from the Excel helpfor multiple if function. I
do have an error but I don't know what it is.
=IF(A2>89,"A",IF(A2>79,"B", IF(A2>69,"C",IF(A2>59,"D","F")))). The error is
locate at the 89,"A",IF.
Is there somebody who have an ideaa
 
T

Tom Ogilvy

It works fine for me.

If you don't use comma as a list separator - you use semi colon, then it
would be:

=IF(A2>89;"A";IF(A2>79;"B"; IF(A2>69;"C";IF(A2>59;"D";"F"))))


If you don't have an english language version of excel then the IF should
probably be something else.
 

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