I'm very new to PERL with Win32::OLE & Microsoft Excel. Does anyone know how to write a few statements to align numbers & text in a column to the right? Thanks.
Before in a column ==>
Amount
23.25
-2.10
none
6666
7525
Output should look like ==>
Amount
23.25
-2.10
none
6666
7525
for the size and bold of numbers and text in column A, I can write
my $font = $sheet->{"A:A")->{Font};
$font->{Size} = 14;
$font->{Bold} = 1;
....
How do I align the numbers and text to the right? Thanks.