Cell is index with a row number and a column number like Cells(1,3) which is
row 1 and column C.
Range has multiple for mats. the simple one is
Range("A3") where A3 is a character string. Range can also be made of cells
such as
Range(Cells(1,3),Cells(2,6))
I usually prefer to use a range with an offset such as
Range("A3

3").offset(rowoffset:=2,columnoffset:=3)
this format is nice because you can put it in a for loop and ichange the
rows or columns
for i = 1 to 10
Range("A3

3").offset(rowoffset:=i,columnoffset:=3)
Next i
Example 1
MyColoffset = 0
For RowCount = 1 To 3
Range("A1

4").Offset(rowoffset:=RowCount - 1, columnoffset:=0).Copy _
Destination:=Range("A10"). _
Offset(rowoffset:=0, columnoffset:=4 * (RowCount - 1))
Next RowCount
newrange
next rowcount
Example 2
Set oldrange = Range("A1

4")
Set newrange = Range("A10")
MyColoffset = 0
For RowCount = 1 To 3
oldrange.Offset(rowoffset:=RowCount - 1, columnoffset:=0).Copy _
Destination:=newrange. _
Offset(rowoffset:=0, columnoffset:=4 * (RowCount - 1))
Next RowCount