Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Intersect(Target, ThisWorkbook.Sheets("REFERENCE").Range("B9")) Is Nothing Then
[COLOR=#333333] [/COLOR]ThisWorkbook.Sheets("REFERENCE").[COLOR=#333333]Range("A1").Value = Application.UserName[/COLOR]
End If
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Intersect(Target, Range("B9")) Is Nothing Then
Range("A1").Value = Application.UserName
End If
Application.EnableEvents = True
End Sub