Quick dumb question

oric

New Member
Joined
Jul 19, 2005
Messages
36
I have been trying to find the answer to this in my dummies book but have not had too much success.

I'm writing a custom function in VBA. I want to use it in other Sub that is not in the same module where I wrote the function. When I tried to do this it gave me an error (I used the immediate window to check if it will work). I had to always click in the module where the function was in order to get it to work.

Is there a place I can put the function so that it will be recognized by all modules?

thx
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
How did you define the function?

If you start with "Public Function" rather than "Private Function" then you should be able to access it from other modules.
 
Upvote 0
I just called it

Function ()

End Function


I'll go ahead and try adding Public. I knew it was something easy.

thanks.
 
Upvote 0

Forum statistics

Threads
1,213,517
Messages
6,114,089
Members
448,548
Latest member
harryls

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