Here is a sample of what you will find in lesson 2 of the downloadable Tutorial on Excel macros Lesson 2 on Excel macros (VBA): The Project Window in the VBE of ExcelNote: Print this page, open Excel and a open a new workbook. Use ALT/F11 to open the Visual Basic Editor as you learned in lesson 1. As you can see, the Project window shows you all the workbooks that are open ("Book1") in the example below) and their components. You can use the + and - signs to show the details. A new Excel workbook includes three sheets and another component named "ThisWorkbook". As we will see later in lesson 9 on events "ThisWorkbook" is a component in which you will store the macros ( also called VBA procedures) that should start automatically when the workbook is opened. Working within the Project Window We will now complete a brief exercise to learn how easy it is to work within the Project Window. Exercise 2 (Create your first macro and use it) Step 1: Using the ALT/F11 key go back to Excel.
Step 2: Add a sheet. Right-click on the tab of Sheet2 and select "Insert".
Step 3: In the dialog window that appears, click on "OK".
Step 4: Using the "ALT/F11" key, go back to the Visual Basic Editor and see that a sheet has been added to the workbook. Notice that the worksheets are sorted alphabetically in the Project window even if they are not in the workbook.
If you have purchased and downloaded the course on Excel Macros and opened the Excel file "vba-tutorial-editor.xls" plus a new workbook you will see this:
In the picture above you can see that the VBAProject named "Book1.xls" has 3 sheets and ThisWorkbook. The workbook "vba-tutorial-editor.xls" has 7 sheets, two userforms, two modules plus the "ThisWorkbook" object. - Userforms are dialog windows (see example image below) that you develop to communicate with the users of your Excel programs and ask them to supply information or make choices. - Modules are folders in which you save one or many of your macros. You can export and save these modules to be used later in other workbook. In the complete lesson 2 you will learn how to add any type of components and how to remove, import, export and manage them from the Project window. Close the VBE and close Excel without saving anything. We hope you have enjoyed this introduction to lesson 2 Next Lesson: The Properties Window in the VBE of Excel
|
||||||