Survey - Export csv fix

PHPExcel_Exception: Start column (C) is beyond highest column (A)
pull/3846/head
Julio Montoya 5 years ago
parent 7488ea3f06
commit 4841e5b36f
  1. 2
      main/survey/survey_list.php

@ -434,6 +434,8 @@ if (isset($_POST['action']) && $_POST['action'] && isset($_POST['id']) && is_arr
$categories = []; $categories = [];
$letterList = []; $letterList = [];
$highestRow = $page->getHighestRow(0); // Name list $highestRow = $page->getHighestRow(0); // Name list
// Sets $page->getColumnIterator('C')
$dimension = $page->getColumnDimension('C');
foreach ($page->getColumnIterator('C') as $col) { foreach ($page->getColumnIterator('C') as $col) {
$index = $col->getColumnIndex(); $index = $col->getColumnIndex();
$cell = $page->getCellByColumnAndRow($counterColumn, 1); $cell = $page->getCellByColumnAndRow($counterColumn, 1);

Loading…
Cancel
Save