Conditional Formula

  • Thread starter Thread starter Lisa
  • Start date Start date
L

Lisa

hello,
I'm trying to do a conditional formula that accounts for a blank field. I
receive a daily report that may or may not have data in it. The formula I
created accounts for all the conditions except a blank field. How can the
formula be modified to have the blank field accounted for and have the
description be "blank". Here's an example of my formula. both zero and blank
have separate meanings.

=IF(AN24>=1500,"Very High",IF(AN24>=90,"High",
IF(AN24>=15,"Medium",IF(AN24>=1,"Low","Absent"))))

I hope this makes sense, thanks for the assist.
Lisa
 
How about something like this:

=IF(ISBLANK(AN24),"",IF(AN24>=1500,"Very High",IF(AN24>=90,"High",
IF(AN24>=15,"Medium",IF(AN24>=1,"Low","Absent")))))
 
Thanks for the quick response. It works when the cell is actually blank, but
the cell is not actually blank, it has a formula in it. Do you have a new
suggestion?

--------
 
David,
You get a gold star for today. Thank you for making my morning. ;)
Lisa
 

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

Back
Top