View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default 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