PC Review


Reply
Thread Tools Rate Thread

How to assign a Category to a custom function?

 
 
Toby Erkson
Guest
Posts: n/a
 
      31st Oct 2006
When you bring up the function wizard, you can select functions by Category
(Financial, Date & Time, Database, Text, etc). How does one assign a
Category to their custom (VBA created) function so it will show up in the
appropriate Category?
--
Toby Erkson
http://www.bidata.net/


 
Reply With Quote
 
 
 
 
Jim Cone
Guest
Posts: n/a
 
      31st Oct 2006
Toby,

Categories...
' 0 = All 11 = Customizing
' 1 = Financial 12 = Macro Control
' 2 = Date & Time 13 = DDE/External
' 3 = Math & Trig 14 = User Defined
' 4 = Statistical 15 = Engineering
' 5 = Lookup & Reference
' 6 = Database
' 7 = Text
' 8 = Logical
' 9 = Information
' 10 = Commands

Private Sub ShouldBeFunctionCategories()
Application.MacroOptions macro:="Bootstraps", Category:=5
Application.MacroOptions macro:="Mushrooms", Category:=10
Application.MacroOptions macro:="TheRightThing", Category:=8
End Sub
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"Toby Erkson" <t o b y e a t b i d a t a d o t n e t>
wrote in message
When you bring up the function wizard, you can select functions by Category
(Financial, Date & Time, Database, Text, etc). How does one assign a
Category to their custom (VBA created) function so it will show up in the
appropriate Category?
--
Toby Erkson
http://www.bidata.net/


 
Reply With Quote
 
Toby Erkson
Guest
Posts: n/a
 
      31st Oct 2006
Thank you Jim, works perfectly!!

P.S. Go Beavers! ;-) My brother-in-law is a Duck fan...it's true you can't
pick your relatives :-D
--
Toby Erkson
http://www.bidata.net/

"Jim Cone" <(E-Mail Removed)> wrote in message
news:u3foGvR$(E-Mail Removed)...
> Toby,
>
> Categories...
> ' 0 = All 11 = Customizing
> ' 1 = Financial 12 = Macro Control
> ' 2 = Date & Time 13 = DDE/External
> ' 3 = Math & Trig 14 = User Defined
> ' 4 = Statistical 15 = Engineering
> ' 5 = Lookup & Reference
> ' 6 = Database
> ' 7 = Text
> ' 8 = Logical
> ' 9 = Information
> ' 10 = Commands
>
> Private Sub ShouldBeFunctionCategories()
> Application.MacroOptions macro:="Bootstraps", Category:=5
> Application.MacroOptions macro:="Mushrooms", Category:=10
> Application.MacroOptions macro:="TheRightThing", Category:=8
> End Sub
> --
> Jim Cone
> San Francisco, USA
> http://www.realezsites.com/bus/primitivesoftware



 
Reply With Quote
 
Jim Cone
Guest
Posts: n/a
 
      31st Oct 2006
Toby,
You are welcome.
Oregon State was the last major college football team to give up
Single Wing football. They haven't been the same since. <g>
Regards,
Jim Cone

"Toby Erkson" <t o b y e a t b i d a t a d o t n e t>
wrote in message
news:OxLbj1R$(E-Mail Removed)...
Thank you Jim, works perfectly!!

P.S. Go Beavers! ;-) My brother-in-law is a Duck fan...it's true you can't
pick your relatives :-D
--
Toby Erkson
http://www.bidata.net/


"Jim Cone" <(E-Mail Removed)> wrote in message
news:u3foGvR$(E-Mail Removed)...
> Toby,
>
> Categories...
> ' 0 = All 11 = Customizing
> ' 1 = Financial 12 = Macro Control
> ' 2 = Date & Time 13 = DDE/External
> ' 3 = Math & Trig 14 = User Defined
> ' 4 = Statistical 15 = Engineering
> ' 5 = Lookup & Reference
> ' 6 = Database
> ' 7 = Text
> ' 8 = Logical
> ' 9 = Information
> ' 10 = Commands
>
> Private Sub ShouldBeFunctionCategories()
> Application.MacroOptions macro:="Bootstraps", Category:=5
> Application.MacroOptions macro:="Mushrooms", Category:=10
> Application.MacroOptions macro:="TheRightThing", Category:=8
> End Sub
> --
> Jim Cone
> San Francisco, USA
> http://www.realezsites.com/bus/primitivesoftware



 
Reply With Quote
 
=?Utf-8?B?SmVycnkgVy4gTGV3aXM=?=
Guest
Posts: n/a
 
      31st Oct 2006
Categories 0-10 are standard and stable, but subsequent categories are added
by various applications/add-ins and will vary (both the names and the order
in which they occur) from PC to PC.

Jerry

"Jim Cone" wrote:

> Toby,
>
> Categories...
> ' 0 = All 11 = Customizing
> ' 1 = Financial 12 = Macro Control
> ' 2 = Date & Time 13 = DDE/External
> ' 3 = Math & Trig 14 = User Defined
> ' 4 = Statistical 15 = Engineering
> ' 5 = Lookup & Reference
> ' 6 = Database
> ' 7 = Text
> ' 8 = Logical
> ' 9 = Information
> ' 10 = Commands
>
> Private Sub ShouldBeFunctionCategories()
> Application.MacroOptions macro:="Bootstraps", Category:=5
> Application.MacroOptions macro:="Mushrooms", Category:=10
> Application.MacroOptions macro:="TheRightThing", Category:=8
> End Sub
> --
> Jim Cone
> San Francisco, USA
> http://www.realezsites.com/bus/primitivesoftware
>
>
> "Toby Erkson" <t o b y e a t b i d a t a d o t n e t>
> wrote in message
> When you bring up the function wizard, you can select functions by Category
> (Financial, Date & Time, Database, Text, etc). How does one assign a
> Category to their custom (VBA created) function so it will show up in the
> appropriate Category?
> --
> Toby Erkson
> http://www.bidata.net/
>
>
>

 
Reply With Quote
 
Jim Cone
Guest
Posts: n/a
 
      31st Oct 2006
Jerry,
Thanks for the information. I'll take your word for it.
I haven't assigned categories to functions in 5 or 6 years.
I think User Defined is more meaningful to most users anyway.
Regards,
Jim Cone
San Francisco, USA


"Jerry W. Lewis" <post_a_reply@no_e-mail.com>
wrote in message
Categories 0-10 are standard and stable, but subsequent categories are added
by various applications/add-ins and will vary (both the names and the order
in which they occur) from PC to PC.

Jerry

"Jim Cone" wrote:

> Toby,
> Categories...
> ' 0 = All 11 = Customizing
> ' 1 = Financial 12 = Macro Control
> ' 2 = Date & Time 13 = DDE/External
> ' 3 = Math & Trig 14 = User Defined
> ' 4 = Statistical 15 = Engineering
> ' 5 = Lookup & Reference
> ' 6 = Database
> ' 7 = Text
> ' 8 = Logical
> ' 9 = Information
> ' 10 = Commands
>
> Private Sub ShouldBeFunctionCategories()
> Application.MacroOptions macro:="Bootstraps", Category:=5
> Application.MacroOptions macro:="Mushrooms", Category:=10
> Application.MacroOptions macro:="TheRightThing", Category:=8
> End Sub
> --
> Jim Cone
> San Francisco, USA
> http://www.realezsites.com/bus/primitivesoftware
>
>
> "Toby Erkson" <t o b y e a t b i d a t a d o t n e t>
> wrote in message
> When you bring up the function wizard, you can select functions by Category
> (Financial, Date & Time, Database, Text, etc). How does one assign a
> Category to their custom (VBA created) function so it will show up in the
> appropriate Category?
> --
> Toby Erkson
> http://www.bidata.net/

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I switch to my custom Function category ? Nandan Microsoft Excel Programming 0 13th Feb 2008 05:14 PM
Using Contact Category to Assign Category to Incoming Mail =?Utf-8?B?U3RlcGhlbg==?= Microsoft Outlook Discussion 3 30th May 2007 02:11 PM
Putting UDF in custom or predefined function category =?Utf-8?B?RXhjZWxNb25rZXk=?= Microsoft Excel Programming 6 6th Mar 2006 08:48 AM
How assign category to custom form? =?Utf-8?B?SmF5Qkw=?= Microsoft Outlook Form Programming 1 19th Jan 2005 10:51 AM
How to assign Expression property of a DataColumn to a custom function? anonymous Microsoft ADO .NET 0 7th Nov 2003 05:55 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:45 PM.