I work with PHPExcel, and I want to remove (copletlly delete a row).
I currently use $objPHPExcel->getActiveSheet()->removeRow($i);
which does empty the cells, but I want to completlly remove the rows.
I run a function that uses this code line, and right after it I check for the last row with content (using $objPHPExcel->setActiveSheetIndex(0)->getHighestRow();
- and I get the last row as if nothing wasn't deleted.
(Cells are empty tough... )