Answers for "excel vba first and last row and column in range"

VBA
1

excel vba first and last row and column in range

Dim rRange As Range
Dim rDuplicate As Range

Set rRange = ActiveSheet.UsedRange
lFirstRow = rRange.Row
lLastRow = rRange.Rows.Count + rRange.Row - 1
lFirstColumn = rRange.Column
lLastColumn = rRange.Columns.Count + rRange.Column - 1
' New reference to current range (can be truncated)
Set rDuplicate = Range(Cells(lFirstRow, lFirstColumn), _
      Cells(lLastRow, lLastColumn))
Posted by: Guest on January-14-2021

Code answers related to "excel vba first and last row and column in range"

Code answers related to "VBA"

Browse Popular Code Answers by Language