Thanks
HTH,
Andy
In a worksheet function you can test with something like
=IF(TRIM(A1)="",True,False)
or if you want to make sure the length is zero
=IF(LEN(A1)=0, True, False)
You can use the VBA functions of the same name in a macro
to test individual cells before deciding what you want to do.
You could make a copy of the worksheet and then test with
TRIM to wipe out anything that looks empty.
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm
"DaMoose" <shaz...@hotmail.com> wrote in message news:00c401c359fb$f1a82da0$a601...@phx.gbl...
One thing that still surprises me is that when I paste
special - values a group of cells that my initial formula
has deemed "", Excel still does not see them as blank.
>.
>
"Da Moose" <shaz...@hotmail.com> wrote in message news:01d701c35a01$e5f5e370$a101...@phx.gbl...
"Myrna Larson" <myrna...@charter.net> wrote in message
news:h92rivc2onutmepsm...@4ax.com...
Have you tried clearing the apparently blank cells?
Right click on 'dodgy' cell and use the 'clear contents '
option
Gren
>.
>
Selection.Value = Selection.Value
This will make the cells with the "" in them truly blank.
Regards,
Paul
"JMay" <jm...@cox.net> wrote in message news:<PfhXa.5476$qf.3701@lakeread06>...