New Post: atal error: Uncaught exception 'PHPExcel_Exception' with message...
i got this error: Fatal error: Uncaught exception 'PHPExcel_Exception' with message 'Invalid cell coordinate IV7)' Stack: PHPExcel_Exception: Invalid cell coordinate IV7) in...
View ArticleNew Post: Insert PDF into worksheet
Hi, Im trying to attach a PDF document into a worksheet, but I cant. I already did it with an image using the next code:<?php require_once dirname(FILE) . '/Excel/Classes/PHPExcel.php'; $objPHPExcel...
View ArticleNew Post: How to Set Table Style
Are the "Table Styles" in MS Excel available for use on PHPExcel such as "Table Style Medium 2" that set alternating row colors, font, background header color, etc. such that I can set all cells in a...
View ArticleNew Post: How to Set Table Style
Table styles are simply a collection of settings for different "elements" of a table: heading row, even row, odd row, summary row, etc. These collections are built into the Excel GUI, so they're not...
View ArticleNew Post: How to read Excel documents?
Hi There, I'm currently trying to use your library to read an Excel document, but am encountering issues (created by myself, i might add, this is not a bug report). I have referenced the what i have...
View ArticleNew Post: Need Conditional Formatting Help
I am new to PHPExcel and have made great progress except for one thing. I am still trying to understand how to turn an Excel Conditional Format into a PHPExcel Conditional format. My desire is to set...
View ArticleNew Post: Need Conditional Formatting Help
My recommendation would be not to use conditional styles for this, but simply to use normal styles
View ArticleNew Post: Need Conditional Formatting Help
If I use a normal style and just set the background color of each row, when the table is sorted the alternate coloring gets messed up. Am I missing something?
View ArticleNew Post: Need Conditional Formatting Help
Yes, you can use conditional formatting, and it will retain that on a sort, but it uses a lot of memory which will limit the number of rows that you can save without breaking PHPExcel
View ArticleNew Post: Need Conditional Formatting Help
Thanks for the reply. So it sounds not practical. Still, can you show me the correct syntax for setting it up? Would I have to iterate through the rows applying it individually?
View ArticleNew Post: Row range Copy & paste
Hello, this text I have translated by Google, Sorry! Now to the problem: I want the contents of the row B2:AG2 copy and paste into line B14:AG14. The copy of the colors (duplicateStyle) works. Is there...
View ArticleNew Post: Row range Copy & paste
I once tried something and it works. Is it that ok? $zeile = $objPHPExcel->getActiveSheet()->rangetoArray('B2:AG2'); $objPHPExcel->getActiveSheet()->fromArray($zeile, null, 'B14');
View ArticleNew Post: Generating an excel sheet under Codeigniter with special chars &...
Hi ocupado, Did you resolved the problem, if yes please tell me the solution, I am also getting the same issue.
View ArticleNew Post: Generating an excel sheet under Codeigniter with special chars &...
Hi ocupado, Did you resolved the problem, if yes please tell me the solution, I am also getting the same issue.
View ArticleNew Post: xls -> pdf : Scale to Fit doesn't work
Hi, I've been using the 26tf8.php example in order to load an Excel template file to transform to PDF (the site is joomla). The process itself works fine but the output scale width isn't applied (I'd...
View ArticleNew Post: Error PHPExcel/Writer/.php
I've specified the writer(Excel2007), but still encountering this problem. The error is :Fatal error: Class 'PHPExcel_Style_Border' not found in Module.php on line 100
View ArticleNew Post: Can't read string cells
Hi, please help! I trying read xlsx table, but something goes wrong. "$objSheet->getCell('B5')->getValue()" returns "#NULL!", but must returned string values like a "D-LINK". Cells that have a...
View ArticleNew Post: Error PHPExcel/Writer/.php
Perhaps showing a bit of your code might help.... because my crystal ball can't see the content of Module.php
View ArticleNew Post: Can't read string cells
SO there's something wrong! Let me get my crystal ball out and try and see what it might be...... PHPExcel is reading your file, and the file is telling PHPExcel that it has a lot of error #NULL!...
View ArticleNew Post: Error PHPExcel/Writer/.php
Sorry, didn't investigated it enough by myself. And my problem is not related to this thread. The problem was in composer. In my export service I have const like const BORDER_STYLE =...
View Article