I am trying to read just one sheet from an xls document and I have this:
$objPHPExcel = $objReader->load(\'daily/\' . $fisierInbound);
$objWorksheet = $
An easiest way for those who is still struggling with this -
//include library
include('path/to/PHPExcel/IOFactory.php');
//load the file
$objPHPExcel = PHPExcel_IOFactory::load('your/path/for/excel/file');
//get the worksheet of your choice by its name
$worksheet = $objPHPExcel->getSheetByName('Name of sheet');
#and your work goes here...