Hi guys,
Working on a sheet that isn't mine. What does this ws code do?
Thanks
RAM
Working on a sheet that isn't mine. What does this ws code do?
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target = "" Then Exit Sub
If Target.Address <> "$A$69" Then Exit Sub
ActiveSheet.Name = Range("A69").Text
End Sub
Thanks
RAM