See, this is what happens when you post a message at 3:00 am in the morning
(local time), you get sloppy. That last example I posted works, but using
Cells is not the way I should have done it, rather, I should have used Rows
directly...
Rows(ActiveCell.Row + 1).Resize(4).Insert
Because this uses one less function call than either of my prior examples,
this would be my preference for use in actual code.