If you have used Excel for any length of time, you undoubtedly know that you can define names in your worksheets that refer to various cells and ranges of cells. You can even define names that refer to constants and to formulas. (The naming abilities of Excel are really quite handy.)
As you are developing macros, you may wonder if there is a way to retrieve a list of defined names within a worksheet. This is actually quite easy, if you remember that the defined names are maintained in the Names collection, which belongs to the Workbook object. With this in mind, you can use the following code to put together a variable array that consists of all the names in a workbook:
Dim NamesList() Dim NumNames As Integer Dim x As Integer NumNames = ActiveWorkbook.Names.Count ReDim NamesList(1 To NumNames) For x = 1 To NumNames NamesList(x) = ActiveWorkbook.Names(x).Name Next x
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (5676) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365. You can find a version of this tip for the older menu interface of Excel here: Pulling Cell Names into VBA.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
When processing information in a macro, you often need to select different cells relative to the currently selected ...
Discover MoreWant to know how much of a time difference there is between your machine and a different machine? This tip provides some ...
Discover MoreEver wonder what the macro-oriented equivalent of pressing Ctrl+End is? Here's the code and some caveats on using it.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-06-18 10:29:16
J. Woolley
@Philip
ReDim must be used at the procedure level (Sub, Function, or Property). Try a Collection instead. See https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/collection-object
or https://wellsr.com/vba/2018/excel/the-vba-collection-object/
For example:
Dim C As Collection ' Public at module level
Sub testGlobalA()
Set C = New Collection
For n = 0 To 9
C.Add (n * 3)
Next n
testGlobalB
End Sub
Sub testGlobalB()
For Each n In C
Debug.Print n
Next n
End Sub
2020-06-17 02:55:54
Philip
Can I "redim" a Public array variable somehow ? I need to pull data into public arrays, but the length of the arrays will vary depending on when the code runs ... when declaring a Public array variable (e.g. Public arrFieldNames() as String), and then in a different sub I am re-dimming them, they seem to lose there "Public" status and go "out of context" once the sub ends ...
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments