isnotblank function?

  • Thread starter Thread starter Matt
  • Start date Start date
M

Matt

Is there a function that will tell me is a cell is not blank, or in
other words, does contain a value?
 
Try something like this:

=IF(NOT(ISBLANK(A1)),"Value","No Value")

There are many IS functions you can use to determine any number of values

ISODD
ISEVEN
ISNUMBER

Check Excel help for details regarding additional IS functions.
 
For someone like me who needs to interpret the TRUE or FALSE that the
suggested formulas would return, I would use something like this:

=IF(ISBLANK(A1),"Cell A1 is blank","Cell A1 is NOT blank"). Edit the last
two arguments to suit your purpose/preference.
 

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

Similar Threads

is blank and 2
ISNOTBLANK 2
IsBlank Funcion 7
VLOOKUP VALUE ERROR 5
Functions 1
Count with merged cells 2
Ignore blank celss in left function 2
Excel Concatenate with line breaks but ignore blank cells 3

Back
Top