New Post: If i want to write to an excisting xls file
Thx Can you write an example ? PLEASE
View ArticleNew Post: How can I improve my PHPexcel File?
Take advantage of PHPExcel's fluent interface:$objDrawing = new PHPExcel_Worksheet_Drawing(); $objDrawing->setName('') ->setDescription('')...
View ArticleNew Post: If i want to write to an excisting xls file
We provide documentation and examples to help you with the basic functionality of PHPExcel.... it is worth reading$objPHPExcel = PHPExcel_IOFactory::load("myTemplateFile.xlsx");...
View ArticleNew Post: How can I improve my PHPexcel File?
Hi Mark, First of all thanks for showing me a more simple way instead of copy and pasting and me just simply changing cell values!! What is the difference between...
View ArticleNew Post: How can I improve my PHPexcel File?
The difference between$objPHPExcel->getActiveSheet()->setCellValue('A7', 'IMAGE') $objPHPExcel->getActiveSheet()->setCellValue('B7', 'SKU'); &...
View ArticleNew Post: delete rows fast and like in excel
I really don't understand what you're asking for. the removeRows() method allows you to select a starting row, and a number of rows to delete. All rows below the deleted rows move up.... that's pretty...
View ArticleNew Post: error 'Cannot read encrypted file' when loading password protected...
hi i found the solution in Perl. the name librarie is Spreadsheet-ParseExcel-0.59 I use perl to run the function on PHP $lastLine = system('file.pl file.xls 2>&1',$output); The documentation is...
View ArticleNew Post: Search for text in a long, descriptive cell with line break
Is there a way to perform a search for a specific text within a cellvalue? For example, I want to search for the following text: "Remote operating system : Microsoft Server 2005". It is always going to...
View ArticleNew Post: Combining xls to xlsx - embedded images not copying into final xlsx
PHP 5.4.6 on Apache 2.4 PHPExcel 1.7.8 I'm combining multiple xls(97-2003) sheets into an xlsx workbook. Everything combines fine - but no images are being copied. The base xls files are being...
View ArticleNew Post: Search for text in a long, descriptive cell with line break
If you can read the cell value you can then just pass it on to the PHP function strpos(). Example:$objPHPExcel = $objReader->load('example.xlsx'); $sheet = $objPHPExcel->getActiveSheet(); $cell =...
View ArticleNew Post: Error in rendering graphics
Hello guys, okay? Again I am having problems with graphics that are ready within the file "template.xls," I have. The problem now seems to be simple. When I do a simple exchange of the column line to...
View ArticleNew Post: Demo doesn't work on my Mac
I downloaded the "Hello Word" script and it dies at the$objPHPExcel = new PHPExcel(); No error message. I'm on a Mac if that makes any difference.
View ArticleNew Post: Is it possible to create a bar and line graph chart , or is it...
Is it possible to create a graph with both bar and line data with two Y axis like the picture below in PHPExcel. Also is it possible to set the graph backround to transparent? Thanks
View ArticleNew Post: Pleace help: Fatal error: Class 'PHPExcel_Worksheet_Protection' not...
Hello. Can't run the demo examples of the error encountered:Fatal error: Class 'PHPExcel_Worksheet_Protection' not found in /var/www/tbki/www/assets/libs/Classes/PHPExcel/Worksheet.php on line 362 It...
View ArticleNew Post: conditional formatting with 'between' expresstion
Is it possible to do this? I have tried to run 08conditionalformatting.php for Excel5 files but have not got positive result. Is it working for Excel5 files? Have not tried Excel2007 yet. Thanks
View ArticleNew Post: Fatal error: Uncaught exception 'PHPExcel_Exception'
hello everyone, when i run my php script to transform xlsx file to csv file, i get an error like this:Fatal error: Uncaught exception 'PHPExcel_Exception' with message 'Sheet1!E2 -> Invalid cell...
View ArticleNew Post: Is it possible to create a bar and line graph chart , or is it...
I had to make a minor tweak to the PHPExcel code to get it working correctly, just pushed it to github; together with 33chartcreate-composite-chart.php in /Examples. $objPHPExcel = new PHPExcel();...
View ArticleNew Post: Fatal error: Uncaught exception 'PHPExcel_Exception'
PHPExcel's calculation engine can't fully interpret row and column references in formulae: change =VLOOKUP(D2,Sheet2!A:B,2,FALSE) to =VLOOKUP(D2,Sheet2!A1:B21,2,FALSE)
View ArticleNew Post: Demo doesn't work on my Mac
Version details? What PHP are you using? (I'm assuming PHPExcel 1.7.8) Anything written to error logs?
View Article