Access Public Constant from another workbook's vba

francoisferreira

New Member
Joined
Jul 21, 2005
Messages
24
Hi, does anybody know how I can refer to a public constant in a different workbook's (which is already open) VBA from the workbook which I am currently working on's VBA?
 
I see what you are saying from a "logical" point of view. But, in practice, in a VBA project, I usually determine placement by scope. If a worksheet uses a constant, I use a private constant within the worksheet class. If two or more worksheets within the same workbook utilize some constant, then it becomes a workbook friend property. If it is needed by another project, it becomes a public property of the workbook. Bear in mind that the entire VBProject is a property of the workbook. All in all, IMO, it does not really matter unless your code is going to be called from outside of the project. In my own practice, because of the way I have decided to structure my code, right or wrong, I rarely use a standard module period. :)
 
Upvote 0

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi Tom

Sorry for the delay, I've been busy these last few days.

Thank you for sharing. That's not my personal choice, I'd use that approach in an OO language but not here. In vba I prefer a more procedural approach. Anyway, this is a choice, you are technically very strong and so I'm sure you chose the approach that works best for you. And, with your approach, I would also pass the constant as a property.
 
Upvote 0
Note that my appoach seems to cause some problems when you change the workbook names (not the proect names)
I just test that and needed to update the reference in VBA
 
Upvote 0
Tom,

If you had 60+ constants that you had defined that you needed to use across workbooks, worksheets, etc... does that mean you would need to define 60 different Get_XXX functions which return that constant's value to whichever file needs access to it?

Thanks,
Jeff
 
Upvote 0
Tom,

Also, what do you mean by "Create Book1.xls and place this code into the workbook class:"? Do you mean create a new class object in the VBAProject "Book1.xls" and paste the code within?

Thanks,
Jeff
 
Upvote 0
Tom,

Also, what do you mean by "Create Book1.xls and place this code into the workbook class:"? Do you mean create a new class object in the VBAProject "Book1.xls" and paste the code within?

Thanks,
Jeff

To answer my own question in the hopes of helping someone else. You need to put the globals and the functions which return their values into the "ThisWorksheet" object of Book1.XLS. And yes, you need to define a function for each global constant which returns that constant's value.

Regs,
Jeff
 
Upvote 0
Alternatively, a much cleaner way to do it (provided my MVP Domenic) instead of creating a new function for each global const is as follows:

Code:
Private Const FILE_OFFSET As Integer = 23
Private Const FILENAME_COL As Integer = 1

Public Property Get GetConstant(s As String) As Integer
    Select Case UCase(s)
        Case "FILE_OFFSET"
            GetConstant = FILE_OFFSET
        Case "FILENAME_COL"
            GetConstant = FILENAME_COL
        'etc
        '
        '
    End Select
End Property

Regards,
Jeff
 
Upvote 0

Forum statistics

Threads
1,223,912
Messages
6,175,348
Members
452,638
Latest member
Oluwabukunmi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top