Anyone have a quick macro I can use that deletes all named ranges in a macro en masse? Thanks, Dave
D Dave F Nov 3, 2006 #1 Anyone have a quick macro I can use that deletes all named ranges in a macro en masse? Thanks, Dave
T T Kirtley Nov 3, 2006 #2 Dave, Something like the following should work: Sub RemoveNames() Dim nme As Variant For Each nme In ActiveWorkbook.Names nme.Delete Next nme End Sub HTH TK
Dave, Something like the following should work: Sub RemoveNames() Dim nme As Variant For Each nme In ActiveWorkbook.Names nme.Delete Next nme End Sub HTH TK