Hello Christina,
as far as I understand your problem correct, I think you need a loop in a loop.
Look at these example:
For i = 1 To RowCount
'First code here to fill your fields
For j = 1 To ColumnCount
'Second code here to make your multiple line items
Next j
Next i
Cheers
Stefan