I want to scroll a cell until it is empty and then jump to the next column and repeat this. I am still new, so I have difficulties.
There are 2 different codes. I do not know which one is closer to the solution....
For i = 1 To 1000
If Cells(i, 2) = "" Then
For j = 1 To 1000
If Cells(2, j) = "" Then
Next
Next
For i = 1 To 1000
If Cells(i, 2) = "" Then
Next i
This is the Basis
And it must look something like this