I have been viewing different codes over the internet for 4 days and I can't seem to get this to work correctly. I have a named range called "REVBUD" and when selecting any cell within that range, the amount selected is supposed to paste so a table called budget. It does paste but when I go to select another cell, it overwrites and I want it to go to the next row (empty cell). My data is being posted in column "AF" starting at row 2. My codes is as follows:
If any one could help it would be greatly appreciated as I'm not sure why it's not pasting to the next cell.
Code:
Sub SPCpastesel()
RowCount = Worksheets("CoreConSummary").Range("A" & Rows.Count).End(xlUp).Offset(1)
Application.CutCopyMode = False
Selection.Copy
With Sheets("CoreConSummary")
Range("Budget[BUDGET]").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End With
End Sub
If any one could help it would be greatly appreciated as I'm not sure why it's not pasting to the next cell.