Hi ysmik11,
Could you please try the following sample to copy cells in a column, then paste to another column,
//////////////////////////////////////////
//Manually select the cells by CTRL+Click
//////////////////////////////////////////
colfrom=1; //Source col#
colto=2; //Destination col#
menu -e 57634; //Copy the selected cells
wks.colSel(colfrom,0); //Deselect source column
wks.colSel(colto,1); //Select destination column
Menu -e 57637; //Paste
Hope this helps.
--Hideo Fujii
OriginLab