I am trying to write a formula in an excel spreadsheet that will be opened in a Bloomberg Terminal. There are "custom" api in the Bloomberg terminal that can understand formula like:
=BLP("CER SP EQUITY","LAST_PRICE")
But when I write this using jxl I get the following error.
=1 ERROR()
My code looks something like this:
_formula is the variable for the string as follows:
BLP("CER SP EQUITY","LAST_PRICE")
f = new Formula(1, 1, _formula);
s.addCell(f);
JJ