New Post: PHPExcel not getting currect values for getHighestRow() and...
I am using code. $objPHPExcel = PHPExcel_IOFactory::load('images/product-excelsheets/store- products.xls'); foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) { $worksheetTitle =...
View ArticleNew Post: Writer_Excel5 & Charts
Hi folks, i've read a lot here about charts from existing Excel-Files and would ask if i had understood correctly. Charts readed from or writed to Excel5 are not supported. Charts readed from and...
View ArticleNew Post: Writer_Excel5 & Charts
Ok ... that was a bit to hasty ... Maybe i should say a little bit to what i want to do. I have an Excel5-File with 30 sheets. 15 sheets are filled with data / the other 15 sheets are only charts to...
View ArticleNew Post: Writer_Excel5 & Charts
No playing with charts myself, but, afaik, you must ask the reader and the writer to use charts with a call to setIncludeCharts(TRUE). See example 32 for a complete example of reading and writing with...
View ArticleNew Post: How to get exact value from cell
Hi, I'm wondering on how to get the exact value form cells, for example I got 4 columns;Deposit450.003 1350.00 When I try to get the data using $objWorksheet->getCellByColumnAndRow($col,...
View ArticleNew Post: How to get exact value from cell
You are getting back the actual value from the cells. Whenever you look at a cell in MS Excel, you are seeing the value with a formatting mask applied, so if you see 1350.00 you are looking at a float...
View ArticleNew Post: GRAPHICS
Documentation is partly written, but not complete enough to have any value yet: all that's currently available is the examples provided in the /Examples folder. Those examples are probably your best...
View ArticleNew Post: Writer_Excel5 & Charts
Hi LWol, played a little bit with setIncludeCharts and getIncludeCharts but i can't see any changes. The resulting workbook has no charts in it. Thanks anyway for your help!
View ArticleNew Post: Writer_Excel5 & Charts
My last (not working) try was:require_once "PHPExcel/IOFactory.php"; $objReader = PHPExcel_IOFactory::createReader('Excel5'); $objReader->setIncludeCharts(TRUE); $objTpl =...
View ArticleNew Post: Writer_Excel5 & Charts
Well... as you write : "Charts readed from or writed to Excel5 are not supported. "
View ArticleNew Post: PHPExcel: not getting correct values for getHighestRow() and...
What are the expected values, what are the values? See if the getHighestDataRow() and getHighestDataColumn() methods give you more appropriate results.
View ArticleNew Post: How to duplicate a Sheet
I'm getting the same error as @yerkicaceres does. Any improvements/workarounds?
View ArticleNew Post: PHPExcel doesn't give me results
Hi, I've something like this into my xls file: (i hope function are right, i've translated them from my french excel):...
View ArticleNew Post: PHPExcel doesn't give me results
SEARCHV is a bad translation, understand VLOOKUP instead.
View ArticleNew Post: PHPExcel doesn't give me results
Unless you've set a locale for formulae, then you need to use English language function names and a comma (,) as a function argument separator rather than a semi-colon (;), as described in section...
View ArticleNew Post: how to read or write Excel 2003 file?
phpExcel_IOFactory::createWrite($objPHPExec,'Excel2003') does not work... can you explain me what to do?
View ArticleNew Post: how to read or write Excel 2003 file?
Please Explain what "does not work" means.... does it give you an error message or an exception? does it load incorrect values? If you were a developer, and a user came to you and simply said.... "it...
View ArticleNew Post: PHPExcel doesn't give me results
I want to read a file written with Excel software. So my script doesn't write formulae. I understood setlocale was only for writes. Am I wrong ? In spite of, i tested it:$x = new...
View Article