Forum Discussion
Alan_srgt
Mar 05, 2024Copper Contributor
Help for this custom function
Hi,
Bonjour,
I created custom functions with the help of the add-in files (.xlam), I would like to share my functions with my work colleagues and explain to them how the formulas work via the "help on this function" module, except that I do not I don't know how to integrate the explanations into each of my formulas in my VBA code
J'ai créé des fonctions personnalisé avec l'aide des fichier compléments (.xlam), je souhaiterais partager mes fonctions avec mes collègues de travail et leur expliquer le fonctionnement des formules via le module "aide sur cette fonction", sauf que je ne sais pas comment intégrer les explications dans chacune de mes formules sur mon code VBA
Help on this function for basic formulas in Excel
Aide sur cette fonction pour les formules de base sur Excel
Help with this feature for custom formulas
Aide sur cette fonction pour les formules personnalisées
Thanks for your help !
Merci pour votre aide !
You can use Application.MacroOptions for this purpose. For example:
Sub RegistergetRGB1() Application.MacroOptions _ Macro:="getRGB1", _ Description:="Returns the fill color of a cell", _ ArgumentDescriptions:=Array("The cell whose fill color you want to return") End Sub
When you select getRGB1 in the Functions dialog:
And when you click OK:
1 Reply
Sort By
You can use Application.MacroOptions for this purpose. For example:
Sub RegistergetRGB1() Application.MacroOptions _ Macro:="getRGB1", _ Description:="Returns the fill color of a cell", _ ArgumentDescriptions:=Array("The cell whose fill color you want to return") End Sub
When you select getRGB1 in the Functions dialog:
And when you click OK: