Hello
Would be glad of some help in creating a code to copy and paste data within a workbook for comparison. I have created the code below which works and does what I want it to do, but I want to add to this so the macro will actually paste in the column to the right hand side of this if there is already data in this column... and repeatedly, so you could potentially have the data pasted in a long continuous line as it pastes in the next clear column to the right...
Sub budget()
'
' budget Macro
'
'
Sheets("Dashboard").Range("C5").Copy
Sheets("Budget Setting").Range("E4").PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Sheets("Summary").Range("BudgetCategoryLookup[[#All],[Column1]]").Copy
Sheets("Budget Setting").Range("E5").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select
End Sub
Hope this makes sense. Look forward to hearing back.
Many thanks
Peter