Hi,
I am trying to paste data from the "Pending" tab to first row without any data on the "BS" tab. I tried to create a "test" macro (copying only one of the columns) but it's pasting in the correct column but wrong row. The first column with data in the BS tab is column D. I need to copy all 4 columns below to to the BS tab and keep them all on same row (Hope that makes sense)
E2:E from Pending tab and paste to column F on the BS Tab
I2:I from Pending tab and paste to column H on the BS Tab
L2:L from Pending tab and paste to column D on the BS tab
N2:N from Pending tab and paste to column E on the BS tab
This is the test macro I did. I can kind of figure out what is wrong but I just don't know how to fix it....
Sheets("Pending").Range("E2:E3000").Copy
With Sheets("BS").Range("f" & Rows.Count).End(xlUp).Offset(4, 0)
.PasteSpecial Paste:=xlPasteColumnWidths
.PasteSpecial Paste:=xlPasteValues
End With
End Sub
I am trying to paste data from the "Pending" tab to first row without any data on the "BS" tab. I tried to create a "test" macro (copying only one of the columns) but it's pasting in the correct column but wrong row. The first column with data in the BS tab is column D. I need to copy all 4 columns below to to the BS tab and keep them all on same row (Hope that makes sense)
E2:E from Pending tab and paste to column F on the BS Tab
I2:I from Pending tab and paste to column H on the BS Tab
L2:L from Pending tab and paste to column D on the BS tab
N2:N from Pending tab and paste to column E on the BS tab
This is the test macro I did. I can kind of figure out what is wrong but I just don't know how to fix it....
Sheets("Pending").Range("E2:E3000").Copy
With Sheets("BS").Range("f" & Rows.Count).End(xlUp).Offset(4, 0)
.PasteSpecial Paste:=xlPasteColumnWidths
.PasteSpecial Paste:=xlPasteValues
End With
End Sub