Fix wrong calculation of highest column (#856)

* Fix wrong calculation of highest column

issue #700

* Revert "Fix wrong calculation of highest column"

This reverts commit ef39af1cb6.

* Revert "Revert "Fix wrong calculation of highest column""

This reverts commit d13493ecbe.

* Revert Xlsx reader

* Fix indentation
This commit is contained in:
Benjamin Yau
2019-02-18 01:32:45 +08:00
committed by Mark Baker
parent a8642a2e9e
commit d2bbb6cd8e
+1 -1
View File
@@ -259,7 +259,7 @@ class Cells
$columnList[] = Coordinate::columnIndexFromString($c);
}
return Coordinate::stringFromColumnIndex(max($columnList) + 1);
return Coordinate::stringFromColumnIndex(max($columnList));
}
/**