Richard,
I tried your code, as shown below, but it didn't work. It gives me a subscript out of range error.
Private Sub Worksheet_Change(ByVal Target As Range)
Worksheets("Masterlist").Range("A15").Formula = Sheets(ActiveCell.Value).Range("A15").Formula
End Sub
So then I tried adapting come code I was using in another workbook. The original code copies the activecell value to another sheet. I tried to adapt it to copy the range of the row I want to copy and paste (columns A through F of the row I make the change in), but that also didn't work:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer
Dim strValue As String
i = Target.Row
strValue = Sheets("Masterlist").Cells(i, "A:F").Value
Sheets(ActiveCell.Value).Cells(i, "A:F").Value = strValue
End Sub
Bookmarks