Excel macro recorder in 2007

Excel VBA Consulting

VBA Excel help

Excel functions and formulas

 

VBA for Excel Tutorial

 

 

VBA for Excel Tutorial

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

VBA for Excel Lesson 7: The Macro Recorder in Excel 2007

If you are using Excel 2007 to 2010 see lesson 7 here

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.

IMPORTANT NOTE 2: You can only complete the exercises below if you have installed VBA for Excel on your computer. If you do not have, click here.

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:

1 - Print this page.

2 - Open Excel and a new workbook.

3 - Go to the "Developer" ribbon to click on  

4- A small window appears titled "Record Macro". We will review its components in the downloadable tutorial. 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.

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.

6 - In the "Developer" ribbon click on

Running your first recorded macro

1 - Select cell "A1" of "Sheet1".

2 - In the "Developer" ribbon click on

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 downloadable tutorial. For now, just click "Run".

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()    

    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 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.


Tutorial on VBA for Excel (Macros)


There are  three sections in this website and in the downloadable tutorial on VBA for Excel.

Section 1: Excel Macros Programming: 10 lessons
This section is about recording, writing, modifying and testing macros in the Visual Basic Editor. You will learn about security and discover "events" (an event is what starts the macro).
Section 2: Excel VBA Vocabulary: 13 lessons
Developing a macro is like talking with Excel and to do so you need to use a language called VBA. There are over a thousand VBA words but you will really need only 100 to talk with Excel about workbooks, worksheets, cells, databases, loops and to develop simple and powerful macros.
Section 3: Forms and Controls in VBA for Excel: 10 lessons
The form is a small window that allows the user to submit values that will be used by the macro. To these forms you add controls (command buttons, text boxes, list boxes and others).


The Excel Macro Recorder since 2007
Links to theTop of the Page

 
 

Excel VBA Consulting

Excel macros help

Exxcel functions and formulas