Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
RJB RJB is offline
external usenet poster
 
Posts: 86
Default Cell appears empty, is not "Blank"

I have a data dump from a large system.

I have lots of cells with nothing in them, but Excel seems to think they are
not blank. (For example, when I hit Ctrl+Cursur, it scoots right past them).

How can I strip that away?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Cell appears empty, is not "Blank"

One possibility is apostrophes

if you put a single quote in a and and nothing else, it wil appear empty and
have length zero, but not be blank. Try this little macro:

Sub cleanup()
For Each r In ActiveSheet.UsedRange
If Len(r.Value) = 0 Then
r.Clear
End If
Next
End Sub

--
Gary''s Student - gsnu200760


"RJB" wrote:

I have a data dump from a large system.

I have lots of cells with nothing in them, but Excel seems to think they are
not blank. (For example, when I hit Ctrl+Cursur, it scoots right past them).

How can I strip that away?

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Cell appears empty, is not "Blank"

There are a bazillion tricks to help clean data for Excel-friendliness.
CellView.xla, a nifty add-in from Chip Pearson,
http://www.cpearson.com/Excel/CELLVIEW.ASPX , will show you what invisible
character the cell contains, and ASAP Utilities, www.asap-utilities.com , has
many features that can help.

Vaya con Dios,
Chuck, CABGx3


"RJB" wrote:

I have a data dump from a large system.

I have lots of cells with nothing in them, but Excel seems to think they are
not blank. (For example, when I hit Ctrl+Cursur, it scoots right past them).

How can I strip that away?

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Cell appears empty, is not "Blank"

Saved from a previous post:

If you want to see what's left in that cell after you convert ="" to values,
try:
Tools|Options|Transition Tab|Toggle Transition Navigation keys on.

Then select one of those cells and look at the formula bar. You'll see an
apostrophe. (Don't forget to toggle the setting to off.)

When I want to clean up this detritus, I do this:

Select the range (ctrl-a a few times to select all the cells)
Edit|Replace
what: (leave blank)
with: $$$$$
replace all

Immediately followed by:
Edit|Replace
what: $$$$$
with: (leave blank)
replace all

RJB wrote:

I have a data dump from a large system.

I have lots of cells with nothing in them, but Excel seems to think they are
not blank. (For example, when I hit Ctrl+Cursur, it scoots right past them).

How can I strip that away?

Thanks


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How I prevent a "0" when a linked cell is empty? Mickyg Excel Worksheet Functions 1 October 10th 07 01:48 PM
Return an absolutely empty cell ... but not "" Billy Leung Excel Worksheet Functions 3 June 4th 07 04:36 AM
Can IF function return an empty cell? (not "") mtnw Excel Worksheet Functions 1 January 10th 07 11:01 PM
Excel: can "go to adjacent empty cell" double-click be disabled? dgg2006 Excel Discussion (Misc queries) 1 April 8th 06 04:51 AM
Changing "returned" values from "0" to "blank" LATATC Excel Worksheet Functions 2 October 20th 05 04:41 PM


All times are GMT +1. The time now is 08:34 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"