The cell is NOT blank...Help!

ibddude

New Member
Joined
Aug 20, 2011
Messages
17
I've imported an Excell sheet which started in Seibel and in a column full of dates, there are blank cells (nothing in them) BUT a ISBLANK test returns false. Sure enough if I go to the cell and delete the contents then the function return TRUE. This process will happen often and I'd like to have these cells recognized as blank...it there another test (perhaps it's a line feed or carriage retun character?)

Also, the ones with "dates" seem to be formatted as dates but I can't use them in a logical test to say todays date (lareger than or smaller than) becasue they are not shwoing as the date serial number....any ideas here would be great as well!

Thanks so muc
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
This should convert your text dates to serial dates. It may or may not fix the IsBlank issue.

  • Select your dates column
  • Select from the menu Data\Text to Columns
    • Select Delimited and Next
    • Deselect all delimeters and select Next
    • Select Column data format: Date
    • Finish
 
Upvote 0
The "empty" cell returning FALSE, is usually caused when you have a formula that returns a formula blank. ""

Then if you copy and Paste Special Values, this will put the value of the empty string in the cell, so Excel does not view this as blank.

If they contain dates, you could use a ISNUMBER test or an is = "" test
 
Upvote 0
Many times, data copied/imported from another source will have special "blank" characters in them. One way to find out what they are is to use a formula like this (if the cell in question was A1):

=CODE(LEFT(A1,1))

Then lookup the value it returns on an ASCII table like this: http://www.ascii-code.com/

That will tell you exactly what you have in that space, so you can work on removing it (i.e. via Search & Replace, Macros, etc).
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,299
Members
452,904
Latest member
CodeMasterX

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