Selection.End(xlDown) with Rows selected

  • Thread starter Thread starter Tokash
  • Start date Start date
T

Tokash

This should work:

For just selecting the column "N" range would be:
Range("N1", Range("N1").End(xlDown)).Select

To select all the rows of the N column range:
Range("N1", Range("N1").End(xlDown)).EntireRow.Select

Tokash
 
Back
Top