haxman has asked for the wisdom of the Perl Monks concerning the following question:
Using Spreadsheet::WriteExcel or Excel::Writer::XLSX
Is there a way to write the functions defined in some ADDINs of Excel.
$worksheet->write($i,1,"=BDH()"); #fails to write in Excel
This above query not able to be interpreted by perl as function/formula. Whereas, below one is written as string in excel but a string not as function. Hence, Excel fails to formulate this string.
$worksheet->write_string($i,1,"=BDH()");
Please provide some solution to write such formulas in Excel. I know it is not directly supported but there should be some workaround.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to write Excel Addin functions!!
by Corion (Patriarch) on Sep 21, 2011 at 09:21 UTC | |
|
Re: How to write Excel Addin functions!!
by planetscape (Chancellor) on Sep 22, 2011 at 09:28 UTC | |
|
Re: How to write Excel Addin functions!!
by MidLifeXis (Monsignor) on Sep 22, 2011 at 09:55 UTC | |
|
Re: How to write Excel Addin functions!!
by jmcnamara (Monsignor) on Sep 22, 2011 at 23:09 UTC | |
|
Re: How to write Excel Addin functions!!
by haxman (Initiate) on Sep 22, 2011 at 09:34 UTC | |
|
Re: How to write Excel Addin functions!!
by haxman (Initiate) on Sep 22, 2011 at 13:59 UTC |