G Guest Mar 14, 2007 #1 I would like a way to print out the list of defined names in a workbook. thanks, Mike
R RichardSchollar Mar 14, 2007 #2 Mike Go Insert>Name>Paste and hit the Paste List button in the dialog that opens. Hope this helps! Richard
Mike Go Insert>Name>Paste and hit the Paste List button in the dialog that opens. Hope this helps! Richard
D Don Guillett Mar 14, 2007 #3 Sub listnames() For i = 1 To ThisWorkbook.Names.Count Cells(i, 1) = Names(i).Name Cells(i, 2) = Names(i) Next i End Sub
Sub listnames() For i = 1 To ThisWorkbook.Names.Count Cells(i, 1) = Names(i).Name Cells(i, 2) = Names(i) Next i End Sub