Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Good correction, but probably Overcome by Events. Based on his other posts,
he is just trying to delete one corrupted name. (and it appeared to be workbook level <g). -- Regards, Tom Ogilvy "keepitcool" wrote in message ... Tom.. Finally.. I can correct the master :) Your code will remove a name like Form1!number.. Following should be a bit more precise. Sub NameFkiller() Dim nm As Name For Each nm In ActiveWorkbook.Names If nm.Name Like "*[!]f*" Or _ (nm.Name Like "f*" And Not nm.Name Like "*[!]*") Then nm.Delete End If Next End Sub keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Tom Ogilvy" wrote: for each nm in ThisWorkbook.Names if Ucase(Left(nm.name,1)) = "F" then nm.Delete end if Next |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Delete Table Names | New Users to Excel | |||
How to delete names on worksheet? | Excel Discussion (Misc queries) | |||
Delete defined names | Excel Discussion (Misc queries) | |||
Delete names from a list | Excel Discussion (Misc queries) | |||
delete duplicate names in a column | New Users to Excel |