View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Gordy99 Gordy99 is offline
external usenet poster
 
Posts: 13
Default want cell J1 to reflect the location of acitivecell.value

Thanks, I'll try it.

"Rick Rothstein (MVP - VB)" wrote:

I think this worksheet code does what you want...

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("J1").Value = Cells(ActiveCell.Row, 1).Value
End Sub

Rick


"Gordy99" wrote in message
...
would like cell J1 to reflect the row the activecell is in with the value
of
column A.