G
Guest
I have the following code that inserts a column next to the active column.
Sub AddColumnt()
ActiveCell.Offset(0, 1).EntireColumn.Insert
End Sub
I would like to copy and paste A1:A10 into the new column. What do I need to add to the macro?
Thanks so much!
Sub AddColumnt()
ActiveCell.Offset(0, 1).EntireColumn.Insert
End Sub
I would like to copy and paste A1:A10 into the new column. What do I need to add to the macro?
Thanks so much!