Education

VBA lessons

Education home

Add comments to your VBA code – How to

This quick how to tip shows you how to add comments to your VBA code. Add comments to your VBA code VBA is short for Visual Basic for Applications. Overall, it is the coding language for Office apps. To make your code more readable, we suggest placing comments in your code. The image below illustrates […]

Hello world in Excel – How to

This tutorial shows you how to create a hello world macro in Excel. For the purpose of this lesson, we go through the steps on a PC running the Windows operating system. In addition, these steps should work perfectly in Excel 2007 or higher. A macro is a set of commands or actions that make […]

Hide object with VBA in Excel – Quiz

Question on how to hide object in Excel with VBA What VBA line of code would you use to hide the named shpSaucer object in Excel? Select your answer below, and try not to take a sneak peak. A. Shapes.Range(“shpSaucer”).Show = False B. Shapes.Range(“shpSaucer”).Visible = msoFalse C. Shapes.Range(“shpSaucer”).Hide = msoTrue D. Shapes.Range(“shpSaucer”).Display = Visible Answer […]