I am trying to reduce using .select and .paste when trying to perform a copy and paste. I know using loops are way easier. I'm trying to copy a range of cells from my worksheet "Entry" and paste it into a worksheet called "input". The problem I'm running into is that I want to paste the data into consecutive cells.
Here's what I have so far:
Dim i as Byte, y as Byte, x as integer
For i = 3 to 3
For y = 3 to 17
x = x +1
Sheets("input").Cells(29,x).value = Sheets("Entry").Cells(y,i).value
Next y
Next i
The cells that are copied have an empty cell in between like the this:

When I paste them into the "input" tab at the range that I want it pastes it like this:

I'm trying to get it so that when pasted, it pastes consecutively into the "input" worksheet like this:
