I'm trying to copy a range from a cell to the end of another cell in the same row. I have the following code in an if loop.
Sheet2.Range(Cells(i, 2), Cells(i, c)).Copy
Sheet3.Cells(i, 2).Paste
Sheet2 and Sheet 3 are structured in the same way thus I'm using the same variables for the row.
On top of that, how do I paste cells to the next empty cell of that particular row of the loop?