Table Of Contents
How to Record a Macro in Excel?
To record a macro in excel, either the View tab or the Developer tab can be used, as shown in the following images.
Let us consider an example to understand the steps to create an excel macro.
The following table contains the overall grades of students. The report is to be formatted on a daily basis. We need to perform tasks like applying borders, highlighting headers, setting background colors, and so on.
We want to record a macro for these repetitive tasks.
The steps to be performed for recording macros are listed as follows:
- In the Developer tab, select “record macro” under the “code” section.
- The “record macro” dialog box opens, as shown in the following image. In “macro name,” enter “formatting.”
Note: It should be ensured that no space is entered while naming the macro. - In “shortcut key,” assign the shortcut key “F” to the macro. This shortcut runs the macro.
- In “store macro in,” select “this workbook.” With this selection, the macro is stored in the present workbook. Moreover, this macro will work only in the current workbook.
- In “description,” type what the macro intends to do.
- Click “Ok” and the “record macro” option changes to “stop recording” under the “code” group.
- At this time, the actions we perform are recorded in the macro. To ensure that the automated tasks are executed every time a new range is selected, activate “use relative references.” This is done prior to creating the macro.
- Once the steps of formatting like applying borders, highlighting headers, setting background colors, etc., have been recorded, click “stop recording” (shown in the sixth point).
- Apply recorded formatting with the help of the shortcut key “Ctrl+Shift+F.” The output is shown in the following image.
Using Recorded Macros
There is another table containing the grades of students. It has to be formatted in the same way the data of example #1 was formatted.
Select A1 and press “Ctrl+Shift+F” for formatting the selected cells. Hence, custom formatting is applied in one go without carrying out multiple commands.
The limitation of the macro recorder is that it is full of unnecessary codes.
The Cautions While Recording a Macro
The following points must be remembered while recording a macro:
- The file containing macros must be saved with the “.xlsm” extension.
- While downloading an Excel file with the “.xlsm” extension (macro-enabled workbook), it should be ensured that the source is authentic.
- The “auto sum” function should not be used while creating a macro because it hard codes the formula.
- The formula should be typed with a single dollar sign like “=SUM(E$2: E10).” The macro recorder records E$2 as a fixed reference and begins the SUM directly below the “row 1” headings. It recognizes E10 as a relative reference and points directly above the current active cell E11.