Total Pageviews

Saturday, October 27, 2018

How to Select a Specified Range and Resize the Selection





















To select the named range "StudentDetails" and then extend the selection by six rows, you can use the following example:

Range("StudentDetails").Select
Selection.Resize(Selection.Rows.Count + 6,Selection.Columns.Count)_

    .Select

No comments: