HELP macro

Starts or switches to Help and displays the specified custom Help topic. Use HELP with custom Help files to create your own Help system, which can be used just like the built-in Microsoft Excel Help.

Syntax

HELP(help_ref)

Help_ref    is a reference to a topic in a Help file, in the form "filename!topic_number".

 

Remarks

 

Tips

APP.ACTIVATE()

SEND.KEYS("%{F4}")

Examples

In Microsoft Excel for Windows, the following macro formula displays the Help topic numbered 101 in the file CUSTHELP.DOC. The Help window remains open if the user switches to another window or application.

HELP("CUSTHELP.DOC!101")

If the custom Help file is not in the current directory, specify the full path along with the name of the file. For example:

HELP("C:\EXCEL\CUSTHELP.DOC!101")

In Microsoft Excel for the Macintosh, the following macro formula displays the Help topic numbered 101 in the file CUSTOM HELP:

HELP("CUSTOM HELP!101")

If the custom Help file is not in the current folder, specify the full path along with the name of the file. For example:

HELP("HARD DISK:EXCEL:HELP:CUSTOM HELP!101")

Return to index