I am a total novice at this. Trying to the following: I have paired data in rows, one below the other, and I want it to be one next to the other (so instead of ranges A2 to FP2 and A3 to FP3, I want it to be A2 to MF2). So, basically, I need to append every other row to the previous row.
I've been trying to make a loop to copy it and then cut that row to another sheet, so that the condition stays the same (always copy row 3 next to row 2), but then I can't make it copy into new free row of second sheet. I have encountered various problems during debugging (Fors, Ifs, Columns...)
Anyway, here is the current code, although awful, and thanks a lot in advance!
Sub pairs()
Application.CutCopyMode = False
For Each cell In Sheets("Sve").Range("A2")
Sheets("Sve").Select
Range("A3:FQ3").Select
Selection.Cut
Range("FR2").Select
ActiveSheet.Paste
Rows("3:3").Select
Selection.Delete Shift:=xlUp
Rows("2:2").Select
Selection.Cut
Sheets("Gotovo").Select
sourceCol = 1
rowCount = Cells(Rows.Count, sourceCol).End(x1Up).Row
For currentRow = 1 To rowCount
currentRowValue = Cells(currentRow, sourceCol).Value
If IsEmpty(currentRowValue) Or currentRowValue = "" Then
Cells(currentRow, sourceCol).Select
End If
Next
ActiveSheet.Paste
Sheets("Sve").Select
Next
End Sub