Not sure if this is what you're after, but making some assumptions it might work. This code inserts a row above the current cell then inserts a space character into columns A:X of that new row. It then inserts a column to the left of the active cell and inserts a space character in the first 100 cells in that column.
Sub insertRC()
ActiveCell.EntireRow.Insert
Range(Cells(ActiveCell.Row, 1), Cells(ActiveCell.Row, 24)).Value = " "
ActiveCell.EntireColumn.Insert
Range(Cells(1, ActiveCell.Column), Cells(100, ActiveCell.Column)).Value = " "
End Sub
If that's not what you're looking for you will need to provide more details.
Bookmarks