View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
J.E. McGimpsey J.E. McGimpsey is offline
external usenet poster
 
Posts: 493
Default Macro for selecting a row

One way:

Public Sub SelectRow()
ActiveCell.EntireRow.Select
End Sub

In article ,
"Remko Campagne" wrote:

When I have selected a cell I want a macro to select the
entire row of the selcted cell.
Does someone know how to make a macro for that purpose?

Thanks in advance,
Remko