ISBLANK function questions

W

William DeLeo

I am trying to use the ISBLANK() function but I don't
understand why it is behaving the way it is ... there are
times when I enter the ISBLANK function and point it to
an "empty" cell but the result is FALSE. If I double
click into that empty cell and hit "enter" or click away,
the formula changes to TRUE.

In the end, I'd like to have a sheet with the formulas
entered and paste in a column of data (some with numnbers
and some blank). I'd like the function column to look at
the newly pasted data column and place a "<" symbol next
to every blank cell. When I do this now, none of the
blank cells are recognised as blank until I clink into
them. (???)

What could be causing the function to think the cell is
not blank?

Is there a better function to use to determine if a cell
is empty or not?

Thanks so much!

(p.s. I posted a somewhat related question on Friday and
Dave Peterson replied ... Thanks Dave, but your suggestion
didn't work so I am rephrasing the problem here).
 
P

Peter Atherton

William

I tried to reproduce your'e problem with the formula

=IF(ISBLANK(A3),">","")

However calculation was instantaneous. Two things to look
at is the calculation set to manual in the workbook and or
do the cells contain spaces in which case the cell is not
blank.

Regards
Peter
 
B

Bernie Deitrick

William,

Often, when you paste data from other applications, there are place
holders involved that make things bad (a very involved technical term,
I realize...;) ) for Excel formulas. A1 may appear blank, and have
nothing in it, yet not be truly blank until you edit the cell. Anyway,
try using a formula like:

=IF(A1="","<","")

and copy that formula down to match your data in column A.

HTH,
Bernie
MS Excel MVP
 
C

Cathy Dziedzic

Hi,
I don't know why ISBLANK() is not working properly. You
could use conditional formatting to identify the cells
that are empty. Then you could turn the indicator (cell
you are putting a "<" symbol into), cell another color.

I am guessing that your purpose is identification. I
hope this helps somewhat.
 
W

William DeLeo

Thanks guys!

Bernie: That formula works perfect so I'll use that
instead.

Peter: "calculation set to manual in the workbook" ...
where can I find this setting (for future reference)?

Thanks again!
 
W

William DeLeo

Peter ... I found it ... thanks.

-----Original Message-----
William

I tried to reproduce your'e problem with the formula

=IF(ISBLANK(A3),">","")

However calculation was instantaneous. Two things to look
at is the calculation set to manual in the workbook and or
do the cells contain spaces in which case the cell is not
blank.

Regards
Peter
.
 
W

William DeLeo

Thank you Cathy! The conditional works fine.
-----Original Message-----
Hi,
I don't know why ISBLANK() is not working properly. You
could use conditional formatting to identify the cells
that are empty. Then you could turn the indicator (cell
you are putting a "<" symbol into), cell another color.

I am guessing that your purpose is identification. I
hope this helps somewhat.

.
 

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

isblank 2
Isblank error 3
IsBlank 5
Problem with ISBLANK Function 6
Formula reference formatting 1
Counting occurance of empty cells 1
Error with ISBLANK function 3
isblank range 5

Top