in reply to Re^2: Reading Excel
in thread Reading Excel
Can you open the file in Excel ?. Run this to show the versions you have
poj#!perl use strict; use warnings; use Win32::OLE qw(in with); # get already active Excel application or open new my $Excel = Win32::OLE->GetActiveObject('Excel.Application') || Win32::OLE->new('Excel.Application', 'Quit'); print "Perl $] Win32::OLE Version ${Win32::OLE::VERSION}\n"; print "Running Excel $Excel->{'Version'} on $Excel->{'OperatingSystem +'}\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Reading Excel
by ravi179 (Novice) on Jan 27, 2017 at 10:07 UTC | |
by Corion (Patriarch) on Jan 27, 2017 at 10:09 UTC | |
by marto (Cardinal) on Jan 27, 2017 at 10:34 UTC | |
by ravi179 (Novice) on Jan 27, 2017 at 11:52 UTC | |
by marto (Cardinal) on Jan 27, 2017 at 11:57 UTC | |
by poj (Abbot) on Jan 27, 2017 at 12:03 UTC | |
by ravi179 (Novice) on Jan 30, 2017 at 04:45 UTC | |
| |
by huck (Prior) on Jan 27, 2017 at 11:55 UTC |