Added some support for boolean formula
This commit is contained in:
parent
6654ccd4bf
commit
af8b1e2ec2
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue