Can I use the VBA Application.Help method to display a particular Excel 2007 help topic?
No, but you can use Application.Assistance.ShowHelp method. First, navigate the local Help system and identify the topic ID. Right-click, and select the “Copy xxxxxxxx” option (this copies the topic ID to the clipboard. Then use a VBA statement like this: Application.Assistance.ShowHelp “HP10062493”. The text in quotes is the topic ID pasted from the clipboard.