I\'m having trouble entering an entire blank row. I\'m trying to shift Columns A-AD (four columns past Z).
Currently cells A-O has content. Cells O-AD are blank. But
If you want to just shift everything down you can use:
Rows(1).Insert shift:=xlShiftDown
Similarly to shift everything over:
Columns(1).Insert shift:=xlShiftRight