Yes! I need to be able to run a macro from $G$1 from a Drop down macro Menu List, & also be able to run your code as well! I couldn't get both to work with your last code! Can this be done???
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("K:K")) Is Nothing Then
If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
On Error GoTo M
Sheets("Master Sheet").Copy After:=Sheets(Worksheets.Count)
ActiveSheet.Name = Target.Value
Sheets("Employee's").Activate
End If
Exit Sub
M:
MsgBox "That WWID already exist!!! This Worksheet Duplication worksheet will be deleted! Please delete or correct this entry on this Employee's worksheet!"
Application.DisplayAlerts = False
ActiveSheet.Delete
Application.DisplayAlerts = True
Sheets("Employee's").Activate
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$A$5" Then Exit Sub
Application.Run Target.Value
End Sub