Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I got few functions(GroupA) which get called by few other functions (GroupB). IS there way to hide this function so that when user go to Insert/Functions.../USer Defined, they can't see it? Thanks Augutus |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Augustus
Mark it as private Private Function myFunction() -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England HIS "augustus" wrote in message ... Hi, I got few functions(GroupA) which get called by few other functions (GroupB). IS there way to hide this function so that when user go to Insert/Functions.../USer Defined, they can't see it? Thanks Augutus |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Or,
at the top of the code module in which the function resides, add Option Private Module You can then make your function Public, so that it can be used by other parts of your code, but because the module is private, the function will not appear in the list of UDFs in the insert function wizard. Robin Hammond www.enhanceddatasystems.com "Nick Hodge" wrote in message ... Augustus Mark it as private Private Function myFunction() -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England HIS "augustus" wrote in message ... Hi, I got few functions(GroupA) which get called by few other functions (GroupB). IS there way to hide this function so that when user go to Insert/Functions.../USer Defined, they can't see it? Thanks Augutus |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
THanks Nick & Robin
"Robin Hammond" wrote: Or, at the top of the code module in which the function resides, add Option Private Module You can then make your function Public, so that it can be used by other parts of your code, but because the module is private, the function will not appear in the list of UDFs in the insert function wizard. Robin Hammond www.enhanceddatasystems.com "Nick Hodge" wrote in message ... Augustus Mark it as private Private Function myFunction() -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England HIS "augustus" wrote in message ... Hi, I got few functions(GroupA) which get called by few other functions (GroupB). IS there way to hide this function so that when user go to Insert/Functions.../USer Defined, they can't see it? Thanks Augutus |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Interface | Excel Discussion (Misc queries) | |||
QUI Expert: Excel-based User Interface or OO User Interface? | Excel Programming | |||
GUI Expert: Excel-based User Interface or OO User Interface? | Excel Programming | |||
Conditional Hide function for Excel | Excel Worksheet Functions | |||
Excel not seeing 2nd COM Interface | Excel Programming |