If Formula - checking the same cell for different entries

A

Ann

Hi

I have the following formula:

=IF('April 2009'!K9>0.25,"A",IF('April 2009'!L9=ML,"ML",IF('April
2009'!L9=SL,"SL",IF('April 2009'!L9=CL,"CL",IF('April
2009'!N9>0.25,"T","")))))

But I can only get it to return the 'A' or 'T'. It won't return 'ML', 'SL'
or 'CL', the only reason I can think of is that it's searching the same cell
3 times to check for this info?

Any help would be gratefully received!

Thanks
 
R

RonaldoOneNil

If your checking for text values, you need to put quotes around them.
=IF('April 2009'!K9>0.25,"A",IF('April 2009'!L9="ML","ML",IF('April
2009'!L9="SL","SL",IF('April 2009'!L9="CL","CL",IF('April
2009'!N9>0.25,"T","")))))
 

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