I have the following function in a series of cells:
=IF(J41>=2000,"Outstanding",IF(J41>=1900,"Above Average",IF(J41>=1600,"Average",IF(J41>=1500,"Below Average",IF(J41<1500,"Poor","")))))
However if cell J41 is blank, it still returns "Poor" whereas I'd like it to stay blank until a number is entered. I've tried using an ISBLANK function at the end (replacing the value if false instead of the "") but cannot seem to find what it should be. Can anybody help?
Thanks