Macro for selecting a row

  • Thread starter Thread starter Remko Campagne
  • Start date Start date
R

Remko Campagne

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
 
try typing the following in the worksheet object in question:


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveCell.EntireRow.Select
End Sub
 
Back
Top