PraveenKS has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks, Can someone advice me how we can copy Excel cell data from one cell to another cell using Perl?

  • Comment on Excel copy data from one cell to another cell

Replies are listed 'Best First'.
Re: Excel copy data from one cell to another cell
by holli (Abbot) on Jun 06, 2019 at 14:09 UTC
Re: Excel copy data from one cell to another cell
by poj (Abbot) on Jun 06, 2019 at 14:09 UTC

        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

        John, thank you for your reply.. it's my mistake I haven't mentioned where I am working.. I am trying to generate the excle file from Linux OS machine.