ISBLANK not working/malfunctioning

Excel Chimp

Board Regular
Joined
Oct 30, 2008
Messages
90
I'm going mad trying to figure out the issue. ISBLANK is returning FALSE for a seemingly blank cell. The formula is:
ISBLANK(VLOOKUP($A13,data1,COLUMN(C:C),TRUE)

I thought it has something to do with the VLOOKUP returned value. However,when I press delete on cell A13, the problem is fixed. Strange?!
Running just the isblank function on cell A13 indicates a FALSE value. I just can't figure out what is in the cell or how to remove it.

Please give me your advice.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Did you do a Copy Paste Special Values on a formula that returned "".
If you did then the cell contains the value of an empty string and therefore not blank.

Try using a check of = ""
 
Upvote 0
ISTEXT returns TRUE. CODE returns #VALUE!.
When I use F5 key to select blanks, the source cell is not highlighted, indicating it is NOT blank.
Then HOTPEPPER is on the right track. It's a formula-blank copied to a value.

It can be identified with the combination of:
ISBLANK()=FALSE
ISTEXT()=TRUE
CODE()=#VALUE!
LEN()=0
 
Upvote 0
Thanks tremendously for the help. Really, this one was causing me brain damage!
Is the best way to locate the null cells (proper term?) some combination of the
Formulas mentioned above? Like an IF=(And(istext). Etc
?
:cool:
 
Upvote 0
Then HOTPEPPER is on the right track. It's a formula-blank copied to a value.

It can be identified with the combination of:
ISBLANK()=FALSE
ISTEXT()=TRUE
CODE()=#VALUE!
LEN()=0

FWIW - you must be very careful with the Len() method. I just tried Len(a formula blank cell) and the outcome was 1 due to the space in my if statement.

To be clear:

WHEN LEN = 1
if A1 had the following formula: =if(isna(vlookup(blah)," ",vlookup(blah))
the value showing in A1 was: " "
=len(A1) would resolve to: 1

WHEN LEN = 0
if A1 had the following formula: =if(isna(vlookup(blah),"",vlookup(blah))
the value showing in A1 was: ""
=len(A1) would resolve to: 0

It's a good clarification to add! :)

Hope that helps!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,415
Messages
6,119,382
Members
448,889
Latest member
TS_711

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