- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to send output of a perl program to Excel
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:08 AM
тАО09-12-2003 05:08 AM
How to send output of a perl program to Excel
Does anybody know how may I pass this data to the input of MS Excel without the obvious cut/paste method ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:25 AM
тАО09-12-2003 05:25 AM
Re: How to send output of a perl program to Excel
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:28 AM
тАО09-12-2003 05:28 AM
Re: How to send output of a perl program to Excel
Yes but is it possible to pass the data directly into an Excel file on a Unix Server and displaying this as a graph "on the fly".
I know this is a long shot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:32 AM
тАО09-12-2003 05:32 AM
Re: How to send output of a perl program to Excel
to correct CGI-script in order to
send tab-data in paralel way either to
HTML-form and to file,which could be
opened by EXCEL.
Regards, Stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:33 AM
тАО09-12-2003 05:33 AM
Re: How to send output of a perl program to Excel
In the US this will not be a big problem, but try to transfer CSV date fields in european (the only logical) format, and Excel will modify it, EVEN IF YOU STRINGIFY THEM. Excel has the opinion, if it /might/ look like a date, the poor exporter will /probably/ have meant to export a - US - date. WRONG!
now make a csv file with european dates, and use the three ways to get them to excel. All methods give a different result: Excel stinks!
Now for the real solution: Spreadsheet-WriteExcel-0.42 (http://search.cpan.org/author/JMCNAMARA/Spreadsheet-WriteExcel-0.42/) which will give you full control :)
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:35 AM
тАО09-12-2003 05:35 AM
Re: How to send output of a perl program to Excel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:52 AM
тАО09-12-2003 05:52 AM
Re: How to send output of a perl program to Excel
Imagemagick has a wonderful interface to perl, and can create, making use of graphing modules (http://search.cpan.org/search?query=graph&mode=all would show several, including http://search.cpan.org/author/MCHANG/CGIGraph-0.93/) If you are working with a database, DBD-Chart (http://search.cpan.org/author/DARNOLD/DBD-Chart-0.80/) might be a fun option.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 07:36 AM
тАО09-12-2003 07:36 AM
Re: How to send output of a perl program to Excel
Run a perl program under windows and use Win32 module to open an OLE connection to Excel and manipulate the spreadsheet through object method calls.
Option 2)
Run a perl program on HPUX to write the output to a MySql database on the HP box. Then on the PC that is running Excel create a DSN entry to the mysql database. You can use MySQl ODBC Connect software on your PC ( see http://www.mysql.com/products/myodbc/ ) to define the connection. Then in Excel access the database.
HTH
-- Rod Hills