Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a column where all the cells either have something like "# 45" or a
single blank or are empty. I need to make all cells with a single blank be empty. Is there a way to do that without using a loop and testing each cell? Thanks, Ken Loomis |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Columns(2).Replace What:=" ", _
Replacement:="", _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ MatchCase:=False -- Regards, Tom Ogilvy "Ken Loomis" wrote in message ... I have a column where all the cells either have something like "# 45" or a single blank or are empty. I need to make all cells with a single blank be empty. Is there a way to do that without using a loop and testing each cell? Thanks, Ken Loomis |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2002: Return blank when VLOOKUP on blank cells | Excel Discussion (Misc queries) | |||
emptying the contets of a cell base on the value of another cell | Excel Worksheet Functions | |||
Maximum Number of Blank Cells between Non Blank Cells in a Range | Excel Worksheet Functions | |||
Copy column range of "single word" cells with spaces to a single c | Excel Discussion (Misc queries) | |||
Emptying the copy buffer | Excel Programming |