This is what I'm trying to do. My data is on row 5 and I'd like to copy it to the next available row. So it I have 10 rows of data (excluding row 5), I'd like to copy what's in row 5 onto row on row 16. The next time I run the macro, it would copy what's in row 5 (which will be different) onto row 17 and so on. Here's what I see in VBA. Really appreciate your help and patience as I haven't edited VBA much.
ActiveCell.Offset(-1, 0).Range("A1").Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
ActiveCell.Offset(1, 0).Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub