开发者

Documenting VBA code for Excel Auto Complete

开发者 https://www.devze.com 2023-02-16 04:41 出处:网络
When writing a custom function to use in exc开发者_如何学Goel using VBA, How to write the documentation comments so that the excel automatically displays during auto-fill of a formula?

When writing a custom function to use in exc开发者_如何学Goel using VBA, How to write the documentation comments so that the excel automatically displays during auto-fill of a formula?

For example, when we start typing VLookUp, It shows what Vlookup does as a tool tip, shows the input variable names and if we press Insert Function from the ribbon, a dialog is shown with clear explanation of the function... How can we achieve that while writing custom functions in VBA?


I believe you must use Application.MacroOptions to register your function and its description, and optionally provide a help file to make the Help on this Function link work.

Not sure how to provide inline description for the parameters though.


I've seen this question a few times, and so far no answer has been provided.

I'm afraid it's just not possible (at least for Excel 2007, not sure about 2010).

0

精彩评论

暂无评论...
验证码 换一张
取 消