mitchems has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to use a range selection like:
Range(Cells(1, 1), Cells(5, 3))
in VB, but perl throws up when I do something like:
my $Range = $Sheet->Range(Cells(1,1),Cells(5,3));
while
my $Range = $Sheet->Range("A1:E3");
works fine.
Anyone know how to return a range handle to a range selected with the Cells(x,y),Cells(z,k)?
I can select one cell fine, but after that it bombs.
Thanks in advance.
Mike
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: OLE::WIN32 Excel Range Selection
by sheep (Chaplain) on Dec 31, 2003 at 17:20 UTC | |
by mitchems (Initiate) on Dec 31, 2003 at 17:41 UTC | |
|
Re: OLE::WIN32 Excel Range Selection
by bassplayer (Monsignor) on Dec 31, 2003 at 16:56 UTC | |
by mitchems (Initiate) on Dec 31, 2003 at 17:17 UTC | |
by mitchems (Initiate) on Dec 31, 2003 at 17:19 UTC |