Access Excel worksheet cells using a1 notation |
|
|
|
|
|
A common task when using a macro in Microsoft
Excel is to access Excel worksheet cells using a1 notation and then do
something with it, such as enter a formula or change the format. A Range object in Visual Basic can be either a single Excel cell (Eg. A1) or a range of Excel cells (Eg. A1:D5). The following example shows how to reference cells and ranges using A1 notation in Microsoft Excel. You can refer to a cell or range of cells in the A1 reference style by using the Range property in Excel. The following subroutine changes the format of Excel cells A1:D5 to bold. Macro code
for reference: Sub FormatRange() Workbooks("Book1").Sheets("Sheet1").Range("A1:D5").Font.Bold = True End Sub Implementing the macro:
Watch the video below to
see the macro in action: |
|
|
|
|
|
|
|