How can I get access to each of the named ranges I've created in an Excel Worksheet so that I can delete them?
I can't use For Each construct to loop through the Names collection as I'm not using VB here (actually Delphi).
I'm using for I = 1 to Names.Count
Range = Workbook.Names(I)
This doesn't work - does anyone have an idea?
Thanks
David
I can't use For Each construct to loop through the Names collection as I'm not using VB here (actually Delphi).
I'm using for I = 1 to Names.Count
Range = Workbook.Names(I)
This doesn't work - does anyone have an idea?
Thanks
David