can't see macro moved from workbook into personal.xlsb

whburling

New Member
Joined
Feb 10, 2017
Messages
7
I am using W10 and excel 365 home subscription

I created an excel vba module in a workbook, A, and tested it out.
I could test it out in debug, but had no idea how to make the spreadsheet ="see" the code module.

I then wanted to move the module into personal.xlsb as I could use this code in other spreadsheets once i learn how to make the spreadsheet see the macro.


I created the personal.xlsb (as i did not have one) by creating a null macro.

I can see the personal.xlsb in my Project VBA editor within workbook A

So...I left clicked and dragged the module from A into the Personal.xlsb
folder under the modules folder.

But if i get out of the VBA editor and go to the excel spreadsheet and
click on "macro" in the code section of the developer ribbon, I do not see the vba macro macro when I click on the drop down list box and select macros in Personal.xlsb

I must be doing something incorrectly. any ideas?
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
PRIVATE Sub Maybe? thats supposed to hide its presence from casual users
 
Upvote 0
Another possibility...
What is in the Macro's in box when you click Macros?
 
Upvote 0
Thank you for responding.

The module I am talking about contains private subroutines and functions and public functions. The custom function i want to be able to use in my worksheet is a public function.
 
Upvote 0
the macro box allows me to select which file contains the macro. It does show personal.xlsb as well as others.
HOwever, when a file is selected (such as personal.xlsb) it does not reveal any of my public functions in my code.

I am mystified.
I suspect I need to let the worksheet know i have custom functions and where they are located. i have no idea how to do that.
 
Upvote 0
If it is a function and not a sub then it won't appear in the macro list.

You reference them in a worksheet as
=Personal.xlsb!SAYHELLO()
where SAYHELLO is the name of the function.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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