VBA - Selecting a Row
One way:
Range("1:1").Select
another:
Range("A1").EntireRow.Select
Another:
Rows(1).Select
In article ,
Elise148 wrote:
I am trying to select a row in VBA...I cannot figure out how to do
this...does anyone know a code I can use to select a row in a worksheet?
I'd appreciate any help you can offer! Thanks!
Elise
|