Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Created August 3, 2017 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/8bf0ee1a5001d6eeb0528342fd71b642 to your computer and use it in GitHub Desktop.
Save ndthanh/8bf0ee1a5001d6eeb0528342fd71b642 to your computer and use it in GitHub Desktop.
Sub ListAllNames()
Row = 1
For Each n In ActiveWorkbook.Names
Cells(Row, 1) = n.Name
Cells(Row, 2) = " " & n.RefersTo
Row = Row + 1
Next n
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment