SimpleSimon62
New Member
- Joined
- Jul 2, 2014
- Messages
- 6
I'm sure its possible to populate the excel tab, from data within the same worksheet, but how do you do it?
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
If Target.Cells.Count = 1 Then
If Len(Target.Value) > 0 Then
ActiveSheet.Name = Range("A1").Value
End If
End If
End If
End Sub