I’m struggling with putting:
[php]$objPHPExcel->getActiveSheet()->getCell(‘B1’)->getValue();[/php]
Directly into a completely different excel sheet
To something like this:
[php]$objPHPExcel2->getActiveSheet()->setCellValue(‘B1’, ‘GetCell(‘b1’)’); [/php]
^ So that I essentially take the value from one excel sheet to be put in a completely different excel sheet.
Like my example taking the cell value of “b1” from the excel sheet “FirstSheet.xls”
To put the cell “b1” (Or any other cell) of the excel sheet “SecondSheet.xls”
Not just moving the data around in the same excel sheet