Thread: offset rows
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Barb Reinhardt Barb Reinhardt is offline
external usenet poster
 
Posts: 3,355
Default offset rows

Dim myRange as Range

Set myRange = Selection.resize(7,1) 'as an example

"Alberto Ast" wrote:

I have selected row 7 and now I want to grow my selection to a variable
number of rows.... how do I do it.