You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The additional worksheet is created automatically in the construct of the PHPExcel class.
The issue can be solved editing the function 'prepare' in the ExcelWriter class.
public function prepare()
{
$reader = PHPExcel_IOFactory::createReader($this->type);
if ($reader->canRead($this->filename)) {
$this->excel = $reader->load($this->filename);
} else {
$this->excel = new PHPExcel();
/********* Fix start *********/
if(null !== $this->sheet && !$this->excel->sheetNameExists($this->sheet))
{
$this->excel->removeSheetByIndex(0);
}
/********* Fix end *********/
}
if (null !== $this->sheet) {
if (!$this->excel->sheetNameExists($this->sheet)) {
$this->excel->createSheet()->setTitle($this->sheet);
}
$this->excel->setActiveSheetIndexByName($this->sheet);
}
return $this;
}
When using the excelWriter class and naming the worksheet:
The resulting Excel file includes an empty worksheet called 'worksheet' to the left of 'Named Sheet'.
In my file explorer, the preview is showing the empty 'worksheet'
Can you expose a method to remove it ? In the phpoffice/phpexcel the function is described:
The text was updated successfully, but these errors were encountered: