如何删除某个行号phpexcel下面的行

时间:2012-12-11 12:28:20

标签: php phpexcel

我想删除底部记录。当我到达第6行时,我想在phpexcel中删除。

for($tot=2; $tot<$highestRowEMDist; $tot++){
  $chkven = $objPHPExcel->getActiveSheet()->getCell('C'.$tot)->getValue();
  if ($chkven!="Test" ) {
    $objPHPExcel->getActiveSheet()->removeRow(7,0);
  }
}

我想要的就是如果我在第6行到达需要删除的第6行

1 个答案:

答案 0 :(得分:0)

我找到了解决方案

for($row=2; $row < $highestRowEMDist; $row++){
   $value = $objPHPExcel->getActiveSheet()->getCell('C'.$row)->getValue();
   if ($value != "Quest") {
      $objPHPExcel->getActiveSheet()->removeRow($row, $row);
   }
}