create a macro using this code, i'm a rookie.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Sheets("Sheet2").Range("A1") = ActiveCell.Row
End Sub
also, how would i adjust the above code to take three specific cells within the active row in sheet1 and put them into three separate cells in sheet2?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Sheets("Sheet2").Range("A1") = ActiveCell.Row
End Sub
also, how would i adjust the above code to take three specific cells within the active row in sheet1 and put them into three separate cells in sheet2?