Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
Is there an option in Excel 2000 to not display the macro list when users click on Tools/Macros? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I do not know a a switch to hide all macros, but you can remove individual
macros from the list by adding the key word "Private" before the word Sub. -- HTH... Jim Thomlinson "Cam" wrote: Hello, Is there an option in Excel 2000 to not display the macro list when users click on Tools/Macros? Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
You can put Option Private Module on top of the module. You can declare it private Private Sub Test() ' End Sub Also, macros with variables passed tothem will not be listed: Sub Test(Optional B As Boolean) ' End Sub HTH. Best wishes Harald "Cam" skrev i melding ... Hello, Is there an option in Excel 2000 to not display the macro list when users click on Tools/Macros? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Display part of list dependant on Validation list selection | Excel Worksheet Functions | |||
Excell Dropdown List. Display alternate text than found in list. | Excel Discussion (Misc queries) | |||
Dropdown list doesn't display from the top of the list | Excel Discussion (Misc queries) | |||
Display name that is on the list | Excel Worksheet Functions | |||
Display Msg box on open "before" MS Macro Security warning display | Excel Programming |