We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087d2cc commit f770095Copy full SHA for f770095
src/ExcelGenerator.php
@@ -291,7 +291,7 @@ public function applyColumnHeaders(): ExcelGenerator
291
$sheet = $this->worksheetType->getWorksheet();
292
$headerCount = count($columns);
293
$columnLetters = [];
294
- for ($index = 0; $index < $headerCount; $index++) {
+ for ($index = 1; $index < $headerCount; $index++) {
295
$columnLetters[] = Coordinate::stringFromColumnIndex($index);
296
}
297
0 commit comments