Is there a way to insert a blank cell? Thanks
Jul 9th 2004 #2 you can only insert a row or a columnif you insert a cell, it will basically just add a row or column.
Jul 9th 2004 #3 thank you for the quick reply!! if you see my other post about deleting cells, you will see the problem I am having.
Jul 9th 2004 #4 The following recorded macro inserts a single cell and then shifts the original cells right or down. Code Sub Macro1() Range("C9").Select Selection.Insert Shift:=xlDown Range("D6").Select Selection.Insert Shift:=xlToRight End Sub