This should be fairly straightforward. But for some reason I'm getting blank cells instead of the values from the array being passed into the cells.
redim rFin (2,1)
rfin (1,1) = "Bla1"
rfin (2,1) = "Bla2"
oSht1 = activesheet
lRow = 10
With oSht1
.Range(.Cells(lRow1 + 1, 6), .Cells(lRow1 + 2, 6)) = rFin
End With
EDIT: Also tried with rFin having values from 0 to 1 instead of 1 to 2.
ReDim rFin (1 To 2, 1 To 1)