I have the following code from a recorded macro and I'm trying to copy/paste down approximately 1000 rows.
Range("J3:K3").Select
Selection.Copy
Range("N1").Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("L3").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues
My code needs to change the "J3:K3" range and "L3" range to the next row down the list of approximately 1000 rows. Apologize for the basic question, I'm very new to VBA and have spent the last hour or so searching to no avail.
Thanks!
Range("J3:K3").Select
Selection.Copy
Range("N1").Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("L3").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues
My code needs to change the "J3:K3" range and "L3" range to the next row down the list of approximately 1000 rows. Apologize for the basic question, I'm very new to VBA and have spent the last hour or so searching to no avail.
Thanks!