Added some support for boolean formula

This commit is contained in:
Martin Maher 2002-10-11 13:19:08 +00:00
parent 6654ccd4bf
commit af8b1e2ec2

View file

@ -501,7 +501,11 @@ public abstract class SxcDocumentSerializer implements OfficeConstants,
if (tableFormulaNode != null) {
Debug.log(Debug.INFO, "TableFormulaNode\n");
fmt.setValue(tableValueNode.getNodeValue());
if(tableBooleanNode == null) {
fmt.setValue(tableValueNode.getNodeValue());
} else {
fmt.setValue(tableBooleanNode.getNodeValue());
}
String cellFormula = tableFormulaNode.getNodeValue();
addCell(cellFormula);