Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
If you want to create an Excel workbook with built-in tutorial, VBA can be used to provide on-topic help texts.
On several occacions I built "help buttons" into the Excel workbook. When klicked an on-topic help text appears, giving instructions or examples. Even external documents, like .pdf or Word files can be linked.
Those kind of scripts are very small and easy to make. An example:
Sub HelpButton() Response = MsgBox("This is the built-in help text, explaining the functionality of the Excel Workbook you are working on.",0, "Tutorial")End Sub