View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default What is the Visual Basic command to select an entire row in Excel.

Hi Sahja

You can use this for the activecell row
ActiveCell.EntireRow.Select

Or this for row 15
Range("A15").EntireRow.Select


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Sahja" wrote in message ...
When I use the command Rows.EntireRow.Select in Visual Basic to select a
single row in an Excel spreadsheet it selects all the rows in the
spreadsheet. Is there another command that will select a single row??