View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
helen helen is offline
external usenet poster
 
Posts: 105
Default Relative Ranges - Multiple Cells

I would like to select a range of cells from column A - column L, but
everytime I run the loop the starting row reference and the number of rows
will be different.

I've worked out a solution, but it will only work if I can get a relative
range to select multiple cells... something like this:

Range("A" & myMarks(k)).Activate
ActiveCell.Offset(0,0:Group, 11).Select

But it doesn't work... is there anything that will do the same job?