hi, i have spent 2 days trying to figure this out and i give up.
all i am trying to do is have the copy/paste get entered on the next row.
i have a log on one worksheet, then i want to copy paste select cells into another sheet on the next row.
the macros runs fine, except it overwrites my first row. i need the info to be pasted on the next row.
i don't understand VBA so when i read everyone's help it makes no sense and i don't know where to input that code in my code.
anyways, help!
here is my current macros:
Sub ontario1()
'
' ontario1 Macro
'
'
Selection.Copy
Sheets("Ontario").Select
ActiveCell.Offset(-1, 0).Range("A1").Select
ActiveSheet.Paste
Sheets("Hold Log").Select
ActiveCell.Offset(0, 4).Range("A1").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Ontario").Select
ActiveCell.Offset(0, 1).Range("A1").Select
ActiveSheet.Paste
Sheets("Hold Log").Select
ActiveCell.Offset(0, 3).Range("A1").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Ontario").Select
ActiveCell.Offset(0, 2).Range("A1").Select
ActiveSheet.Paste
Sheets("Hold Log").Select
ActiveCell.Offset(0, 7).Range("A1").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Ontario").Select
ActiveCell.Offset(0, 4).Range("A1").Select
ActiveSheet.Paste
End Sub
Thank you!