Displaying the arguments of UDF in the spertip

S

Subodh

I was searching for a way to have a my custom UDF (may be in an addin)
arguments be displayed in the supertip similar to the way like all
other usual/normal excel functions show.
Also, I want to have my udf listed in the
application.worksheetfunction in the VBA editor.
Any tips will be appreciated.
Thanks in advance.
 
O

ozgrid.com

Like;

Application.MacroOptions Macro:="L_VLOOKAllSheets", _
Description:="Performs VLOOKUP across all Worksheets and stops at the
1st match" _
& vbNewLine & "E.G: =L_VLOOKAllSheets(Dog,$C$1:$E$20,2,FALSE)",
Category:="Ozgrid Functions"
 
S

Subodh

Check out the below..

http://www.jkp-ads.com/articles/Reg...cel.com/archives/2006/02/17/registering-a-use...

I hope you already know the option of displaying the arguments on hitting
Ctrl+Shift+A soon after you enter the function name

--
Jacob (MVP - Excel)





- Show quoted text -

Jacob
I checked up your links
But, the links are good to show a method for getting the name of the
function easily listed
and also the function names are displayed as you start typing their
names
However, I want to make the arguments be shown automatically
For example, to make clear what i want
On pressing =sum( excel automatically shows Sum(Number1,
[Number2],...) to help the user on the arguments
So, I want my custom function also show the same.
Thanks for your reply to may question and the response.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top