in reply to Use of Powerpoint and Excel?

Hi shaggyquest,

Welcome to the Monastery, if you have not done so already take a look at How do I post a question effectively? and the PerlMonks FAQ. How far have you got with this task? By that I mean which part are you stuck at? Do you have code that opens Excel? Are you driving these applications via Win32::OLE?

Martin

Replies are listed 'Best First'.
Re^2: Use of Powerpoint and Excel?
by Anonymous Monk on Apr 23, 2008 at 20:01 UTC
    My code: $book = $xlapp->Workbooks->Open("$file"); $chart = $book->Charts(3)->Copy(); $ppt = $power->Presentations->Add(); $ppt->Slides->Paste($chart); $ppt->SaveAs($filename.'\shashimamidi'.'.ppt'); In this code I couldn't copy the Excel Chart to 'ppt'... Is there any way that I can copy and paste in MS Powerpoint? Shaggy