Insert Column in excel

I need to insert a column next to the selected column.

I have the script set to select the entire column of the active cell, now I need to do a regular “Insert Columns” command from the menu.

Help

Thanks!

Hi,

try this


tell application "Microsoft Excel"
	insert into range column (first column index of selection) of active sheet
end tell