I am using JXL to write an Excel report. I need to use named areas for the report, and have formulas based off of them. However, when the Excel file loads, the values displayed are incorrect. If I click on the cell, and hit enter, the value changes and is correct. I can't figure out how to make the value appear correctly on load. Does anyone know a way to force Excel to re-evaluate, or to provide a default value for the Formula?

Below is a simplified version of my code:

excelWorkbook.addNameArea("NamedArea", excelSheet, column1, row1, column2, row2);
Formula formula = new Formula(columnNumber, rowNumber, "COUNT(NamedArea)");
excelSheet.addCell(formula);
link|improve this question
I don't know what jxl is, but in Excel/Vba you'd use excelSheet.Calculate – Doug Glancy Jun 23 '11 at 19:32
Thanks for the info. Sadly, I have to use JXL. – Summer Madison Jun 23 '11 at 19:37
feedback

2 Answers

Maybe this helps. Look for the "setAutomaticFormulaCalculation" method:

http://jexcelapi.sourceforge.net/resources/javadocs/2_6_10/docs/index.html

link|improve this answer
No luck. I tried every possible combination of the methods setAutomaticFormulaCalculation and setRecalculateFormulasBeforeSave. I am beginning to think this is just an issue with JXL. – Summer Madison Jun 23 '11 at 21:25
Thanks for the tip though. I am guessing those methods are what "should" fix the issue. But I think there are just issues somewhere. I am wondering if it has to do with the timing of the area naming versus formula calculations. – Summer Madison Jun 23 '11 at 21:27
You're welcome and good luck! – Doug Glancy Jun 23 '11 at 21:42
feedback

Sadly, it's looking like there is not really a fix for this. I think it's a problem in JXL. I think for some reason the named areas are not being set until after the formulas are evaluated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.