D Dave Peterson Feb 2, 2007 #2 Maybe... Insert|Name|Paste Or... I'd use Jan Karel Pieterse's (with Charles Williams and Matthew Henson) Name Manager: You can find it at: NameManager.Zip from http://www.oaltd.co.uk/mvp
Maybe... Insert|Name|Paste Or... I'd use Jan Karel Pieterse's (with Charles Williams and Matthew Henson) Name Manager: You can find it at: NameManager.Zip from http://www.oaltd.co.uk/mvp
G Guest Feb 2, 2007 #3 using c#code to accomplish -- marxi Dave Peterson said: Maybe... Insert|Name|Paste Or... I'd use Jan Karel Pieterse's (with Charles Williams and Matthew Henson) Name Manager: You can find it at: NameManager.Zip from http://www.oaltd.co.uk/mvp Click to expand...
using c#code to accomplish -- marxi Dave Peterson said: Maybe... Insert|Name|Paste Or... I'd use Jan Karel Pieterse's (with Charles Williams and Matthew Henson) Name Manager: You can find it at: NameManager.Zip from http://www.oaltd.co.uk/mvp Click to expand...
D Debra Dalgleish Feb 2, 2007 #5 In Excel, you could turn on the macro recorder, and manually create the list of names, as Dave described. Then, you may be able to incorporate that code in your other project.
In Excel, you could turn on the macro recorder, and manually create the list of names, as Dave described. Then, you may be able to incorporate that code in your other project.
M Michael Bednarek Feb 2, 2007 #6 can i get the names defined in excel? Click to expand... Sub ListAllNames() Dim namName As Name For Each namName In Application.Names Debug.Print "Name: " & namName.Name & ", RefersTo: " & namName.RefersTo Next namName End Sub
can i get the names defined in excel? Click to expand... Sub ListAllNames() Dim namName As Name For Each namName In Application.Names Debug.Print "Name: " & namName.Name & ", RefersTo: " & namName.RefersTo Next namName End Sub