]> source.dussan.org Git - poi.git/commitdiff
Don't report data table master cells as formula cells, since POI doesn't evaluate...
authorGreg Woolsey <gwoolsey@apache.org>
Sat, 10 Jun 2017 01:04:40 +0000 (01:04 +0000)
committerGreg Woolsey <gwoolsey@apache.org>
Sat, 10 Jun 2017 01:04:40 +0000 (01:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1798289 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java

index a39fd47bf322161f8419317672a8e74e48232ac7..7afb3896f36078f52e5457583d25eb1622cfdb83 100644 (file)
@@ -655,8 +655,18 @@ public final class XSSFCell implements Cell {
         }
     }
     
+    /**
+     * POI currently supports these formula types:
+     * <ul>
+     * <li> {@link STCellFormulaType#NORMAL}
+     * <li> {@link STCellFormulaType#SHARED}
+     * <li> {@link STCellFormulaType#ARRAY}
+     * </ul>
+     * POI does not support {@link STCellFormulaType#DATA_TABLE} formulas.
+     * @return true if the cell is of a formula type POI can handle
+     */
     private boolean isFormulaCell() {
-        if (_cell.getF() != null || getSheet().isCellInArrayFormulaContext(this)) {
+        if ( (_cell.isSetF() && _cell.getF().getT() != STCellFormulaType.DATA_TABLE ) || getSheet().isCellInArrayFormulaContext(this)) {
             return true;
         }
         return false;
@@ -679,7 +689,12 @@ public final class XSSFCell implements Cell {
     }
 
     /**
-     * Return the cell type.
+     * Return the cell type.  Tables in an array formula return 
+     * {@link CellType#FORMULA} for all cells, even though the formula is only defined
+     * in the OOXML file for the top left cell of the array. 
+     * <p/>
+     * NOTE: POI does not support data table formulas.
+     * Cells in a data table appear to POI as plain cells typed from their cached value.
      *
      * @return the cell type
      * @since POI 3.15 beta 3