2

In excel, when you type for function Vlookup as =vlookup( ) the moment we press opening bracket ( excel itself shows the arguments as the tooltip to be entered, at fourth argument it show as the ComboxBox or DropDownList for you choose option. I have a VBA function with many arguments, so great if can show tooltip as VLOOKUP and user will don't need remember promiscuous argument. How do i code?

Davuz
  • 5,040
  • 13
  • 41
  • 61

1 Answers1

1

Unfortunately this isn't possible. Your best option is to use

Application.MacroOptions()

This method enables you to provide descriptions, help etc. when your UDF is added through the Function Wizard.

markblandford
  • 3,153
  • 3
  • 20
  • 28