code blijft doordraaien en stopt niet
waarom ????
Code:
Sub SemiTranspose5()
Dim i As Long, y As Long
Dim x As Integer
i = 1
y = 1
Do Until IsEmpty(Cells(y, 1))
For y = 2 To 2
Cells(y, x + 10).Value = Cells(i, 11).Value
y = y + 1
Cells(y, x + 10).Value = Cells(i, 12).Value
y = y + 1
Cells(y, x + 10).Value = Cells(i, 13).Value
y = y + 1
Cells(y, x + 10).Value = Cells(i, 14).Value
y = y + 1
Cells(y, x + 10).Value = Cells(i, 15).Value
y = y + 1
Cells(y, x + 10).Value = Cells(i, 16).Value
y = y + 1
Next y
y = y + 1
Loop
End Sub
waarom ????