diff --git a/src/java/org/apache/poi/ss/SpreadsheetVersion.java b/src/java/org/apache/poi/ss/SpreadsheetVersion.java index 8030e0228..154e50167 100644 --- a/src/java/org/apache/poi/ss/SpreadsheetVersion.java +++ b/src/java/org/apache/poi/ss/SpreadsheetVersion.java @@ -36,10 +36,11 @@ public enum SpreadsheetVersion { *
  • The total number of available rows is 64k (2^16)
  • *
  • The maximum number of arguments to a function is 30
  • *
  • Number of conditional format conditions on a cell is 3
  • + *
  • Number of cell styles is 4000
  • *
  • Length of text cell contents is 32767
  • * */ - EXCEL97(0x10000, 0x0100, 30, 3, 32767), + EXCEL97(0x10000, 0x0100, 30, 3, 4000, 32767), /** * Excel2007 @@ -50,22 +51,25 @@ public enum SpreadsheetVersion { *
  • The maximum number of arguments to a function is 255
  • *
  • Number of conditional format conditions on a cell is unlimited * (actually limited by available memory in Excel)
  • + *
  • Number of cell styles is 64000
  • *
  • Length of text cell contents is 32767
  • *