http://qs321.pair.com?node_id=11101077


in reply to Re^2: Excel copy data from one cell to another cell
in thread Excel copy data from one cell to another cell

Example for copying a single cell with Win32::OLE

$Sheet->Range("B4")->{Value} = $Sheet->Range("A1")->{Value};
with $Sheet being an Excel-worksheet

HTH, Rata