Hi all,
I have a Perl app that generates a spreadsheet in Excell using OLE.
I have done quite a lot of interesting things including adding charts etc, but have become stuck tring to sort data on a worksheet.
Here is what I have been playing with;
my $start = $offset[$k] + $vert_offset;
my $end = $offset[$k + 1] + ($vert_offset - 2);
# Sort data ready for charting
$sheet4->Rows("$start:$end")->Sort("F5");
This is supposed to sort all of the rows selected using column F5 as the sort column.
It appears to do nothing!
I have looked at the object browser and used the VBA macro which generated this;
# sort rows
Rows("5:58").Select
Selection.Sort Key1:=Range("F5"), Order1:=2, Header:=2,
OrderCustom:=1, MatchCase:=False, Orientation:=1,
DataOption1:=0
I cannot work out how to implement this!
Any clues would be great :)
Grayarea
20040928 Janitored by Corion: Added code tags
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.