littlenoodles
12 years ago
I've been using
data_format = HSSFDataFormat.getBuiltinFormat("($#,##0.00);($#,##0.00)");
to format dollar data in poi since version 3.2. I recently upgraded to 3.9, and
that code no longer works. But this does:
data_format = 7;
I saw a post on here about a regression in getBuiltinFormat, but I didn't
understand what it was saying, and in any case, the current 3.9 version still
seems to be the 20121203 release that I'm using. Does anybody know about a
recent change to getBuiltinFormat?
Thanks,
Rob
data_format = HSSFDataFormat.getBuiltinFormat("($#,##0.00);($#,##0.00)");
to format dollar data in poi since version 3.2. I recently upgraded to 3.9, and
that code no longer works. But this does:
data_format = 7;
I saw a post on here about a regression in getBuiltinFormat, but I didn't
understand what it was saying, and in any case, the current 3.9 version still
seems to be the 20121203 release that I'm using. Does anybody know about a
recent change to getBuiltinFormat?
Thanks,
Rob