Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
My problem is with converting an empty text back to a blank cell. "" IS NOT A
BLANK CELL BUT AN EMPTY TEXT.if a cell is "" then isblank will be false |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Select the cells that may have the "" in them and use
Dim myCell As Range For Each myCell In Selection If myCell.Value = "" Then myCell.Value = "" Next myCell Note that this will remove formulas that return "" You could use this to prevent deleting formulas: Dim myCell As Range For Each myCell In Selection If Not myCell.HasFormula Then If myCell.Value = "" Then myCell.Value = "" End If Next myCell HTH, Bernie MS Excel MVP "excel guru" <excel wrote in message ... My problem is with converting an empty text back to a blank cell. "" IS NOT A BLANK CELL BUT AN EMPTY TEXT.if a cell is "" then isblank will be false |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting a date to a text field w/o converting it to a julian da | Excel Worksheet Functions | |||
Converting text string back into a formula | Excel Discussion (Misc queries) | |||
I ACCIDENTIALLY SAVED A BLANK PAGE OVER A FILE HOW DO I GO BACK T | Excel Worksheet Functions | |||
Find a non-blank cell and bring back text a in same row | Excel Worksheet Functions | |||
Can blank cells created using empty Double-Quotes not be empty?? | Excel Programming |