Skip to main content

Range.CurrentRegion property

Table of contents
  1. Syntax
  2. Remarks
  3. Example

Returns a Range object that represents the current region. The current region is a range bounded by any combination of blank rows and blank columns. Read-only.

Syntax

expression.CurrentRegion

expression A variable that represents a Range object.

Remarks

This property is useful for many operations that automatically expand the selection to include the entire current region, such as the XlRangeAutoFormat values.

This property cannot be used on a protected worksheet.

Example

The following example selects the current region on Sheet1.

Worksheets("Sheet1").Activate 
ActiveCell.CurrentRegion.Select

The following example assumes that you have a table on Sheet1 that has a header row. The example selects the table without selecting the header row. The active cell must be somewhere in the table before you run the example.

Set tbl = ActiveCell.CurrentRegion
tbl.Offset(1, 0).Resize(tbl.Rows.count - 1, tbl.Columns.count).Select

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>