Hi, wright1125,
the text means to go to the advanced answer window, highlight the procedure and then hit the # to add [code]...[/code] tags or add them by hand.
Try to use the event in ThisWorkbook (deactivate the event behind the sheet, only use the event in ThisWorkbook):
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Dim strAddress As String
Dim ws As Worksheet
If Not Intersect(Target, Range("A1:A2")) Is Nothing Then
If Target.Address = "$A$1" Then
strAddress = "A1"
Else
strAddress = "A2"
End If
Application.EnableEvents = False
For Each ws In Worksheets
ws.Range(strAddress).Value = Target.Value
Next ws
Application.EnableEvents = True
End If
End Sub
Ciao,
Holger
Bookmarks