hi all - i need to copy 5 different cells from a sheet in one workbook, then paste them into another sheet/workbook and various columns.... is there an elegant way to combine these two codes somehow??
the value is pasted into the next available row in the designated column.
the value is pasted into the next available row in the designated column.
Code:
Sheets("PCR Form").Range("J9").Copy
With Sheets("Register")
lst = .Range("b" & Rows.Count).End(xlUp).Row + 1
.Range("b" & lst).PasteSpecial xlPasteValues
End With
Code:
ThisWorkbook.Worksheets("Action Point Entry").Cells(m, 8).Copy
tempbook.Worksheets("Varun").Cells(x, 2).PasteSpecial Paste:=xlPasteValues, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False