Concise Way To Select All Rows Except First?
Hi,
here's a few ways
Lastrow1 = Cells(Cells.Rows.Count, "A").End(xlUp).Row
Lastrow2 = ActiveSheet.UsedRange.Rows.Count
LastRow3 = Cells.Find("*", SearchOrder:=xlByRows,
SearchDirection:=xlPrevious).Row
Mike
"PeteCresswell" wrote:
I guess I want to concoct a .Range and then operate on it.
But, short of iterating thorugh rows to find the last row, I can't
figure out how to do it.
Googled a little, and "ActiveCell.SpecialCells(xlLastCell) seems to
have the right ring to it.
True?
Either way, can somebody shed some light?
|