I'm trying to create a VBA macro to
- select two rows above the activecell
- then autofill the two selected rows down one.
ActiveCell.EntireRow.Offset(-2, 0).Select selects the entire row (2 rows above the active cell), but I want it to select the row below this one as well. A recorded macro:
Range("A143").Activate
Selection.AutoFill Destination:=Rows("142:144"), Type:=xlFillDefault
Instead of absolute values for rows (rows 142:144), I want it to take the two selected rows above instead.