Home
VBA / Excel / Access / Word
Access
Application
Data Type
Data Type Functions
Date Functions
Excel
File Path
Forms
Language Basics
Math Functions
Outlook
PowerPoint
String Functions
Windows API
Word
XML
Refer to an entire row : Range Reference « Excel « VBA / Excel / Access / Word
VBA / Excel / Access / Word
Excel
Range Reference
Refer to an entire row
Sub entire() range(
"3:3"
).Select End Sub
Related examples in the same category
1.
Reference a range by name
2.
Refer to a range outside the active sheet by qualifying the range reference with a worksheet name from the active workbook
3.
To refer to a range in a different workbook
4.
Refer to an entire column
5.
Noncontiguous ranges
6.
Select a range A1:A3
7.
Activate the Range
8.
Use disgonal cells to select a range
9.
Use ActiveCell.End to select a range
10.
Use the cell reference directly
11.
Select a range by using the ActiveCell
12.
Refer to the B2 cell in DataInput, while another workbook is active
13.
Select Last Cell
14.
The Offset method can also use negative arguments. A negative row offset refers to a row above the range. A negative column offset refers to a column to the left of the range.
15.
Use 0 as one or both of the arguments for Offset: expression refers to cell A1
16.
returns a range object that represents the last non-empty cell in the same row
17.
Using the End Property to Navigate within a Worksheet
18.
Using the Range Property to Refer to Groups of Cells
19.
Specifying Individual Cells with the Cells Property