Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hallo allemaal,
ik zoek een zeer simple VBA routine om alle namen in de actieve workbook te verwijderen, wie weet deze (zeker zeer simpele) code? Alvast bedankt, Sabine (met een lichte black-out) |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This routine will remove all the Defined Names in the Active wrokbook:
Sub ClearNames() Dim n As Name For Each n In ActiveWorkbook.Names n.Delete Next End Sub -- Gary''s Student - gsnu200903 "Sabine" wrote: Hallo allemaal, ik zoek een zeer simple VBA routine om alle namen in de actieve workbook te verwijderen, wie weet deze (zeker zeer simpele) code? Alvast bedankt, Sabine (met een lichte black-out) |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Exactly wat I was hoping for, thank you very much - and excuses for me
writing my post in Dutch, I was in a hurry and did't realize that I was in the english-speaking newsgroup :-) Beste regards, Sabine "Gary''s Student" schreef in bericht ... This routine will remove all the Defined Names in the Active wrokbook: Sub ClearNames() Dim n As Name For Each n In ActiveWorkbook.Names n.Delete Next End Sub -- Gary''s Student - gsnu200903 "Sabine" wrote: Hallo allemaal, ik zoek een zeer simple VBA routine om alle namen in de actieve workbook te verwijderen, wie weet deze (zeker zeer simpele) code? Alvast bedankt, Sabine (met een lichte black-out) |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Select a cell where you want the list to start and run this macro:
Sub names() Selection.ListNames End Sub "Sabine" wrote: Hallo allemaal, ik zoek een zeer simple VBA routine om alle namen in de actieve workbook te verwijderen, wie weet deze (zeker zeer simpele) code? Alvast bedankt, Sabine (met een lichte black-out) |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Not exactly what I was hoping for, but completely my fault when I am posting
a request in Dutch, SORRY! I was looking for a routine to delete all names in a spreadsheet, see the other answer, THANKS ANYWAY :-) Sabine "Sam Wilson" schreef in bericht ... Select a cell where you want the list to start and run this macro: Sub names() Selection.ListNames End Sub "Sabine" wrote: Hallo allemaal, ik zoek een zeer simple VBA routine om alle namen in de actieve workbook te verwijderen, wie weet deze (zeker zeer simpele) code? Alvast bedankt, Sabine (met een lichte black-out) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Send Mail in Excel Spreadsheet with fields in spreadsheet | Excel Programming | |||
Transmitting data from a server spreadsheet to a client spreadsheet | Excel Programming | |||
conversion of MS Works Spreadsheet to Excel 2002 Spreadsheet | Excel Discussion (Misc queries) | |||
Is there a way to insert a formula, password or macro in an excel spreadsheet that will automatically delete the spreadsheet? | Excel Discussion (Misc queries) | |||
How to open another Excel spreadsheet to copy data into current spreadsheet ? | Excel Programming |