I am using an Excel macro to cut and paste some data and add it to the end of a list. At the moment it is overwriting the last entry.
'macro
Range("A3:R93").Select
Selection.Copy
Range("T100000").Select
Selection.End(xlUp).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
This will take me to the last existing entry in column T.
I wish to paste my new data AFTER this so need to increment my current row by 1
Is there an easy way of doing that?