Bubbles
Bubbles

Reputation: 569

VBA: range selection

I would like to ask, if I need to select an entire row, start from the 3rd row as a range in VBA, instead of the below line, any better ways to go about it? Many thanks.

Range("C3:C1048576").Select

Upvotes: 0

Views: 631

Answers (1)

john-project
john-project

Reputation: 373

Assuming your working with an Excel Worksheet, this line will do it ActiveWorkbook.Worksheets(1).Rows(3).Select

Upvotes: 2

Related Questions