php - phpexcel with Bloomberg -


i trying create excel workbook using phpexcel...

everything works fine of columns i'm creating.

however, last column contains formula (bdh) belongs bloomberg's excel addin. workbook used, of course, on bloomberg terminal.

phpexcel returns error when try enter bloomberg formula on column. have entered regular formulas in column, assume problem phpexcel doesn't know bloomberg formula entering...

any thoughts?

$formula="=bdh(\"$my_asset\" , \"px_last\" , \"$my_date\" , \"$my_date\" , \"$my_overrides\" )"; $objphpexcel->setactivesheetindex(0)->setcellvalue("g1",$formula); 

thanks in advance!

you're correct in assumption: phpexcel work functions "native" excel itself, not functions added excel through external packs, nor user-defined functions. nor there method of adding these non-native functions.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -