VBA activate range macro code helps you to activate a range in an excel worksheet. You can use the Activate method of Range object to activate any range or one single cell in the worksheet. You can follow this tutorial to know – how to activate a range using VBA in Excel 2003,2007,2010,2013 or above.
Why we need to activate a Range using VBA?
When we are automating any tasks we can activate a range and perform different tasks with the active range. For example, we can format the background color, font color, font style, font size etc.
VBA Activate Range – Syntax
Here is the example syntax to activate a range using VBA.
Range(“YourRange”).Activate
Usage:The below excel macro will activate range D1.
Range(“D1”).Activate
Here, Activate is the method of Range object. Where D1 is the Range which we want to activate.
VBA Activate Range – Examples
Please see the below VBA codes to activate a Range.
Example 1:Activating one single cell.
The below macro can be used to activate a one single cell. It can be written in two ways. The first one is using Range object and the second statement is using cells object(Range is a collection of cells or one single cell).
Sub Activating_Single_Cell() Range("A2").Activate 'or Cells(2, 1).Activate End Sub
In Range(“A2”).Activate statement ‘A2’ is the range which we are activating. Here, ‘A’ is the column name and ‘2’ is the row number.
In Cells(2, 1).Activate statement ‘2’ is the row number and ‘1’ is the column number.
Example 2:Activating Multiple cells.
The below macro can be used to activate multiple cells. You can mention the start range and end range separated with a colon. For example, To activate a range from A2 to C3, you can mention as Range(“A2:C3”).Activate. This will activate A2, A3,B2,B3,C2,C3 Cells.
Sub Activating_multiple_Cells() Range("A2:C3").Activate End Sub
Example 3: Activating Multiple cells using VBA
We can also use the Cells syntax to active multiple Cells. The below macro will activate the same range (A2:C3) whcih we discussed above using Cells and Range object.
Sub Activating_multiple_Cells() Range(Cells(2, 1), Cells(3, 3)).Activate End Sub
Here Cells(2, 1) refers to A2 and Cells(3, 3) refers to C3. and wee need to use comma (,) instead of colon (:).
VBA for Activating a Range – Instructions
Please follow the below step by step instructions to execute the above mentioned VBA macros or codes:
- Open an Excel Workbook
- Press Alt+F11 to Open VBA Editor
- Insert a Module from Insert Menu
- Copy the above code for activating a range and Paste in the code window(VBA Editor)
- Save the file as macro enabled workbook
- Press ‘F5’ to run it or Keep Pressing ‘F8’ to debug the code line by line.
Now, you can see the range A2:C3 is activated in the active worksheet.
Recent Posts:
Excel Template for Monthly Expenses
Monthly Expenses Templates helps you to check your expenses against your income. You can plan you budget and limit your expenses by analyzing your income and expense details. You can use this template to track [...]
Excel Template for Task Management
Excel Task Management Template helps you to manage list of Tasks. This Excel template for task management is created using simple formulas and function in Excel. It is very easy to use and enter data [...]
How to Use Project Plan Template
Here are the step by step instruction to use Excel Project Plan Template. You can download our free Project Plan Template and follow the below instruction to plan your projects. Overview Project Plan template contains [...]
VBA ActiveSheet – Excel Active Sheet Object
VBA ActiveSheet Object helps to refer the currently activated sheet in the active workbook. We can get all properties and methods of the ActiveSheet using VBA. Let us see the useful of the examples on [...]