satyas has asked for the wisdom of the Perl Monks concerning the following question:
Hi, Is there any module in perl which will prepare excel chart on dynamic data? We have the code for the fixed rows and columns' data. But if the number of rows and columns are dynamic then how we are going to handle that?
$chart->add_series( categories => '=Sheet1!$B$1:$E$1', values => '=Sheet1!$B$2:$E$2' );The above code is for fixed rows and columns.I am looking for something like the below code where the row no is a variable, give me pointer if you have one, thanks
$chart->add_series( categories => '=Sheet1!$B$1:$E$1', values => '=Sheet1!$B$variable:$E$variable' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Excel chart for dynamic data
by GrandFather (Saint) on Mar 23, 2012 at 00:24 UTC | |
|
Re: Excel chart for dynamic data
by jmcnamara (Monsignor) on Mar 23, 2012 at 08:53 UTC |