Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Excel copy data from one cell to another cell

by PraveenKS (Initiate)
on Jun 06, 2019 at 14:02 UTC ( [id://11101049]=perlquestion: print w/replies, xml ) Need Help??

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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://11101049]
Approved by davies
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (1)
As of 2024-04-25 02:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found