Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
With [H2].CurrentRegion
'now here is where you can manipulate the properties and methods of this range reference like...
'find the first row/column, last row/column
FirstRow = .Row
FirstCol = .Column
LastRow = FirstRow + .Rows.Count - 1
LastCol = FIrstCol + .Columns.Count - 1
...
End With
With Worksheets(SheetName).[H2].CurrentRegion...
Dim rngH2 as Range
Set rngH2 = Worksheets(SheetName).[H2]
With rngH2.CurrentRegion
...