Sunday 17 June 2012

Lesson 7: The Macro Recorder in Excel 2007 to 2010

IMPORTANT NOTE 1: There are no risks to your computer or to Excel in completing the exercises below. At any time if you feel uncomfortable just close Excel without saving the workbook and retry later.



One of the tools that makes the programming environment in Excel unique is the Excel Macro Recorder. When you start the macro recorder anything you do in Excel is recorded as a new macro. That makes the macro recorder the best VBA teacher and also a great assistant who will write a lot of the words and sentences that you need without a single typo. It will also be there when you do not remember something that you do not use often. Even after many years of programming you will still use the macro recorder daily not to learn anymore but to write code (VBA words and sentences).

With the Excel macro recorder you can not develop a macro that will damage Excel or your computer so try anything and learn.
In this lesson on line you will record a macro and run it.

Recording Your First New Macro:
Step 1: Print this page.

Step 2: Open Excel and a new workbook.

Step 3: Go to the "Developer" ribbon to click on  

Step 4: A small window appears titled "Record Macro". We will review its components. For now just click on "OK".  


When you do so the small window disappears and in the "Developer" ribbon   is replaced by  telling you that you are going in the right direction. The macro recorder is ON.

Step 5: In the sheet below (Sheet1) select cells B1 to B5, go to "Sheet2", select cell B6, come back to "Sheet1" and select cells D2 to D5.

Step 6: In the "Developer" ribbon click on 

Running your first recorded macro
Step 1: Select cell "A1" of "Sheet1".
Step 2: In the "Developer" ribbon click on 

Step 3: In the window that appears Macro1 is selected.
Again we will forget about the components of this window because we will study them in the up coming tutorial. For now, just click "Run".

Step 4: See how fast the macro runs. You do not even see Excel go to Sheet2 (but it does). At the end of the execution cells D2 to D5 are selected.
What took you around 5 seconds to do manually (step 5 of the first exercise) took Excel a fraction of a second. Excel can work much faster than you can. Welcome to the marvelous world of VBA for Excel (Macros).

You can repeat steps 1 to 4 of this second exercise as often as you like.
Looking at your first recorded macro
To complete this third exercise you must have studied lessons 1 to 4.
Go to the Visual Basic editor and you will see the following macro in the code window when you double click on Module 1 in the Project Window:

Sub Macro1()
'
' Macro1 Macro
'    
    Range("B1:B5").Select
    Sheets("Sheet2").Select
    Range("B6").Select
    Sheets("Sheet1").Select
    Range("D2:D5").Select
End Sub

As you can see the macro recorder recorded your instructions in a language that Excel understands (VBA). You can now use VBA's written code to have Excel perform this task.
Never forget that the Excel macro recorder is your best teacher and will remain a great assistant for the rest of your VBA developer's life.

No comments:

Post a Comment