Be the first user to complete this post

  • 0
Add to List

VBA-Excel: CurrentRegion

CurrentRegion analyses the filled cells and the blank cells surrounded by the rangeyou provide. Its returns a Range object as a region in Mxn shape.

Syntax:

RangeObject. CurrentRegion

Example:

Function FnCurrentRegion()

   Dim mainWorkBook As Workbook

   Set mainWorkBook = ActiveWorkbook

 With mainWorkBook.Sheets("Sheet1")

 .Range("H2").Value = 5

        .Range("I3").Value = 15

        .Range("H2").Activate

    End With   

    ActiveCell.CurrentRegion.Select 

 End Function
Current Region
Current Region



Also Read:

  1. VBA-Excel: Array Functions – IsArray()
  2. VBA-Excel: Create Dynamic or Run-time WorkSheets using Macro.
  3. Excel-VBA : Prevent Changing the WorkSheet Name
  4. Excel Macro - Visual Basic Editor
  5. VBA-Excel: Delete Blank Rows from Excel Work Sheet
  6. VBA-Excel: String Functions – RTrim()
  7. Getting Started with Excel Macro
  8. VBA-Excel: SUDOKU Solver