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 ef39af1cb6bac8f3101aa52a6336d736910d387b. * Revert "Revert "Fix wrong calculation of highest column"" This reverts commit d13493ecbedf57253448438311c1d04a3ebdb65e. * Revert Xlsx reader * Fix indentation
This commit is contained in:
parent
a8642a2e9e
commit
d2bbb6cd8e
|
@ -259,7 +259,7 @@ class Cells
|
|||
$columnList[] = Coordinate::columnIndexFromString($c);
|
||||
}
|
||||
|
||||
return Coordinate::stringFromColumnIndex(max($columnList) + 1);
|
||||
return Coordinate::stringFromColumnIndex(max($columnList));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue