in reply to Re: Win32::OLE::Const 'Microsoft Excel'
in thread Win32::OLE::Const 'Microsoft Excel'
How do I draw separate charts for each table? I tried various loops, but I get charts which are totally irrelevant to the data.$column=1; foreach my $dept (sort keys %every_dept) { $row=1; $Sheet->Cells($row++,$column)->{Value} = $dept; foreach (@{$every_dept{$dept}}) { $Sheet->Cells($row,$column)->{Value} = $_; $Sheet->Cells($row,$column+1)->{Value} = <some-val>; + $row++; #my $range = 'b'.$y; #$Sheet->Range($range)->Interior->{ColorIndex} =$y; #$Sheet->Range($range)->{Value} = $y; } $column+=2; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Win32::OLE::Const 'Microsoft Excel'
by maa (Pilgrim) on Dec 06, 2004 at 14:28 UTC |