The best way to remember and learn something is by listening. So if you want to learn something you can record the contents in your own voice and listen as many times as you want and you can learn anything easily. Similarly, a spreadsheet provides a feature called macro to record the commands, tasks, or the activities performed by the user on a specific worksheet or set of worksheets, and then it can be used to avoid repetition of commands or similar tasks in other worksheets.
A macro is a recorded name of set of tasks or commands in MS Excel which is used to repeat them by single click or shortcut key.
MS Excel provides a developer tab to work with macros. By default, it is not activated in excel. Follow these steps to activate the Developer tab.
I have prepared data for salesmen for month wise sales and recording macro to prepare a report. To create a macro follow these steps:
Step 1: Place the cursor in the cell C2.
Step 2: To start the process, click on the Developer –> Use relative references to copy the relevant cell address of the worksheet.
Step 3: Now click on Developer –> Record Macro.
Step 4: Now record macro dialog box will appear as displayed in the following screenshot.
Step 5: I have selected the option this workbook. Click on OK button. It will display two buttons that indicates recording is started. Observer the following screen shot as given 1 and 2 number.
Step 6: Now type formulas in C13, C14, and C15. Similarly type the formulas for Maximum and Minimum. Apply formatting if you want to apply and click on Stop recording button as displayed in step 5.
Running Macro
Step 1: Place the cursor in D4.
Step 2: Now click on Developer –> Macros option.
Step 3: Macro dialog box will appear with the list of Macros.
Step 4: Select a macro to run from the list and click on Run button.
Step 2: Open macros dialog box
Step 3 and 4: Select and macro and run
Step 5: Display result after running macro
AS you are aware that MS excel provides numerous functions and formulas. At the other side there are certain tasks which cannot be performed by a function.
In this scenario user need to create a function to do such tasks using macro as a function. In this article we are going to discuss how to create a function in MS Excel using macro.
To create a function for using macro as function class 10 follow these steps:
Step 1: Click on Developer –> Visual Basic option from code group.
Step 2: Write following code in module:
Function Multiply(a As Integer, b As Integer) As Integer
Multiply = a * b
End Function
In above function, use the same name inside line as and pass the values in first line. The words [su_highlight background=”#f8ff73″]Keywords – Function, Integer, End Function[/su_highlight] converts the first letter into capital by itself.
a and b are two values can be taken from excel worksheet.
Step 3: Now return to MS Excel screen and just type =, you will get Multiply function there as a formula. Observe the following screenshot:
Step 4: Select the Multiply function and now use it as traditional function or formula.
In the above function variable, a and variable b is written inside a function in line 1 code that is considered as arguments.
The values of these arguments will come from excel worksheet when you write the function in the MS Excel cell.
Select the cells which reference you want to take to compute the data using function
4 videos|27 docs|8 tests
|
1. What is a macro? |
2. How can macros be used as functions in spreadsheet programs? |
3. Can macros be created in Class 10 spreadsheet programs? |
4. What are some examples of tasks that can be automated using macros in spreadsheet programs? |
5. Are there any limitations or considerations when using macros in spreadsheet programs? |
|
Explore Courses for Class 10 exam
|