However, Spreadsheet::WriteExcel has been known to have issues, especially when working with Spreadsheet::ParseExcel, primarily with formulas.
"Issues" might scare away the punters.
;-)
The situation is as follows. Excel writes a formula in two parts. The RPN binary encoding of the formula and the result of the calculation.
Spreadsheet::WriteExcel only writes the encoded formula part because it wouldn't be possible to the calculate, a priori, the result of arbitrarily complex expressions. Equally
Spreadsheet::ParseExcel only reads the result part of a formula because it isn't in a position to evaluate the formula. Therefore, when
Spreadsheet::ParseExcel reads a formula written by
Spreadsheet::WriteExcel it only sees a blank result.
In the circumstances this is a best effort by both modules and most users would be unaffected by it.
John.
--