Finding Non-Blank Cells
Superjas
The following will select any formulas and constants.
Union(Cells.SpecialCells(xlCellTypeFormulas),
Cells.SpecialCells(xlCellTypeConstants)).Select
Tony
-----Original Message-----
Hi,
Excel has an inbuilt Specialcells method that finds Blank
cells. Would there be a quick (quick as in Specialcells
speed) way to assign a Non-Blank range without having to
loop through every cell within the Usedrange and do the
IsEmpty test?
Thanks in advance,
SuperJas.
.
|