ISBLANK and IF formula Error

jmmain24

New Member
Joined
Feb 8, 2018
Messages
5
Hi all,

I have the following formula that works perfectly:

=IF(K17>=2, "Very Superior", IF(K17>=1.33, "Superior", IF(K17>=0.6, "High Average", IF(K17>=-0.5, "Average", IF(K17>=-1, "Low Average", IF(K17>=-1.5, "Mildly Impaired", IF(K17>=-2, "Mildly to Moderately Impaired", IF(K17>=-2.534, "Moderately Impaired", IF(K17>=-2.734, "Moderately to Severely Impaired", "Severely Impaired")))))))))

I'm trying to add an IFBLANK statement to this formula so that if K17 is blank then the formula produces a blank cell. (Right now it produces "Very Superior" and I don't want that to appear if there is no associated value in K17). I've tried:

IF(isblank(K17), "", (K17>=2, "Very Superior", IF(K17>=1.33, "Superior", IF(K17>=0.6, "High Average", IF(K17>=-0.5, "Average", IF(K17>=-1, "Low Average", IF(K17>=-1.5, "Mildly Impaired", IF(K17>=-2, "Mildly to Moderately Impaired", IF(K17>=-2.534, "Moderately Impaired", IF(K17>=-2.734, "Moderately to Severely Impaired", "Severely Impaired")))))))))))

...but it is not working. I'm a bit new at this. Any suggestions on how to adjust the former formula to produce a blank value if K17 is blank???
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
If K17 also contains a formula, and that formula returns "", that is NOT blank. IT's actually a text string.

Instead of IF(ISBLANK(K17)
Try
IF(K17=""
 
Upvote 0
Try this:

Code:
=IF(ISBLANK(K17), "", [COLOR=#ff0000]IF[/COLOR](K17>=2, "Very Superior", IF(K17>=1.33, "Superior", IF(K17>=0.6, "High Average", IF(K17>=-0.5, "Average", IF(K17>=-1, "Low Average", IF(K17>=-1.5, "Mildly Impaired", IF(K17>=-2, "Mildly to Moderately Impaired", IF(K17>=-2.534, "Moderately Impaired", IF(K17>=-2.734, "Moderately to Severely Impaired", "Severely Impaired"))))))))))

I think you just needed to add the "IF" back in after the isblank check, see the part highlighted in red.
 
Upvote 0
Copy pasted Philwojo's formula but substituted Jonmo's text string theory and it worked!

Thanks to you both. you have no idea how grateful I am!
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top