Reputation: 311
The red range is called theRange. How do I select the yellow range using VBA code?
Upvotes: 0
Views: 133
Reputation: 50034
You can use the .Offset(<rows>, <columns>)
method of the Range
object to do this:
Range("theRange").Offset(,1).Select
Upvotes: 2