G
GW Dyson
Private Sub Worksheet_change(ByVal Target As Range)
If Target.Address <> "$S$4" Then Exit Sub
Cells(Cells(Rows.Count, "s").End(xlUp).Row + 1, "s") = Target
End Sub
Is it possible to use this in more than 1 place in a worksheet.
Thank You
If Target.Address <> "$S$4" Then Exit Sub
Cells(Cells(Rows.Count, "s").End(xlUp).Row + 1, "s") = Target
End Sub
Is it possible to use this in more than 1 place in a worksheet.
Thank You