Hi,
I am trying to read the values using Range Function.
Range function need ranges in format like "A3:B6".
But my problem is that i have count of columns and i want to retrieve the values into an array but i don't know how can i convert the Column Count to its equivalent for (A, B, AB etc).
this is my code:
use strict;
use warnings;
use Win32::OLE qw(in with);
use Win32::OLE::Const 'Microsoft Excel';
$Win32::OLE::Warn = 3; # die on errors...
my $Excel = Win32::OLE->new('Excel.Application');
$Excel->{DisplayAlerts}=0;
my $Book = $Excel->Workbooks->Open("input.xls");
my $Sheet = $Book->Worksheets(1);
my $LastCol = $Sheet->UsedRange->Find({What=>"*",
SearchDirection=>xlPrevious,
SearchOrder=>xlByColumns})->{Column};
#I am getting values for range
my $firstcolum = $Sheet->Range("A1:P1")->{'Value'};
#but how can i use $LastCol after ':' in range values
#my $firstcolum = $Sheet->Range("A1:$LastCol1")->{'Value'};
------------------
can someone please help me?
thank you
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.