Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

How to insert file objects into excel sheets?

by biswanath_c (Beadle)
on Nov 04, 2009 at 17:21 UTC ( [id://804998]=perlquestion: print w/replies, xml ) Need Help??

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


I would like to insert file objects (XML documents) inside cells in excel sheet. I want the file itself to be inserted and not just the link (when i send over the excel to somebody else, they should be able to double click and open the inserted XML docs).

How can i do it in PERL?
  • Comment on How to insert file objects into excel sheets?

Replies are listed 'Best First'.
Re: How to insert file objects into excel sheets?
by redgreen (Priest) on Nov 04, 2009 at 18:11 UTC

    The best way to automate Excel is to use the macro recorder, perform the steps you want to do, then view the VBA source of the actions.

    Once you have that, you can convert that to perl.

    #!perl use Win32::OLE; my $_app_object = (Win32::OLE->GetActiveObject('Excel.Application') || Win32::OLE->new('Excel.Application')); sub Macro1 { # Macro1 Macro # Macro recorded 11/4/2009 $_app_object->Range('B3')->Select(); $_app_object->ActiveSheet->OLEObjects->Add({Filename => 'C:\\Docum +ents and Settings\\User\\My Documents\\Sitemap.xml', Link => 0, Displ +ayAsIcon => 0})->Select(); }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-24 23:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found