display defined names in excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like a way to print out the list of defined names in a workbook.


thanks,

Mike
 
Mike

Go Insert>Name>Paste and hit the Paste List button in the dialog that
opens.

Hope this helps!

Richard
 
Sub listnames()
For i = 1 To ThisWorkbook.Names.Count
Cells(i, 1) = Names(i).Name
Cells(i, 2) = Names(i)
Next i
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top