New Post: PHPExcel_IOFactory unreadable cells with mixed font properties
Hi Mark, Thanks for your reply. I have tried your Rich Text Object Solution, but it persisted in returning nothing else than "null". I have copied and pasted a part of the Excel sheet with the...
View ArticleNew Post: PHPExcel taking too long to write
Hi guys, so what I have is a tool that writes stuff from my database into a csv file. It's taking much longer than I want it to (like 30 minutes) and i'm not sure why. This is my code.$row =2;...
View ArticleNew Post: PHPExcel taking too long to write
If all you want to do is write to a csv file, then you're better off using PHP's built-in fputcsv() function
View ArticleNew Post: HOW Calculation Statistical function LINEST
Hello I use the function LINEST but Me need calculation for example In excel =LINEST(A1:A10;B1:B10;1;1) in php $a=array(1,...,10); $b=array(1,....,10); $n=new PHPExcel_Calculation_Statistical();...
View ArticleNew Post: Laravel Wrapper
Just came across this and thought I would share the link to this PHPExcel wrapper for Laravel.Laravel-Excel I've been hoping that someone would write a wrapper for Laravel and now they have! (8^D) --...
View ArticleNew Post: numberFormat with 3 decimals
Hello everyone, For work, I wrote a php script which create an excel file with numbers. Some are 2 decimals numbers, some others are 3 decimals numbers. I would like that Excel, when I open my...
View ArticleNew Post: numberFormat with 3 decimals
I'm really sorry everyone, my falt ! I was writing an already formated number and Excel couldn't process it correctly. the code 0.000 is correct and working.
View ArticleNew Post: reading large XLSX file with no formula
Hello, I am just starting to use PHPExcel. I have a large (20Mb) XLSX file containing only numerical and text data. Does the fact that the file contains only data make it possible to read it quicker...
View ArticleNew Post: reading large XLSX file with no formula
There is absolutely no difference is reading speed between a file that contains formulae and one that doesn't
View ArticleNew Post: Auto height not working for me.
I have the same problem and this solution does not help me... Does anybody have other suggestions?
View ArticleNew Post: Chart Legend missing after chart is copied
Hello everyone. I have problem when copying sheet from template file to my new PhpExcel object. In template file I have charts that I need to copy, so everything works fine and charts are copied, but...
View ArticleNew Post: Extract range or TextBox as image
Is it possible to extract a range of cells and/or a TextBox as an image? Thank you in advance, -Michael
View ArticleNew Post: PHP Error says cache file not there, but it is.
PHP Version 5.5.12 PHPExcel 1.8.0<?php include_once 'includes/abidb_connect.php'; include_once 'includes/abi_functions.php'; require_once 'includes/SessionStart.php'; //$conn is set here...
View ArticleNew Post: Unable to load file with createReader('Excel 5')
Those "hieroglyphs" are the binary stream for the Excel5 file. If you're sending this to a browser, then you need to send the appropriate headers for a BIFF-format Excel file, as shown in...
View ArticleNew Post: Unable to load file with createReader('Excel 5')
Hi Mark, Thank you for the response. I had the headers setup as shown in 01simple-download-xls.php and an excel file was downloaded that contained the glyphs. The new URL routing system our site used...
View ArticleNew Post: Processing Time for large file
Looking for any advice to spped up processing time. I've got a 23mb .xls file, 33 columns, ~ 49,000 rows. I used the following snipped to read it in chunks so I'm not getting a timeout error anymore,...
View ArticleNew Post: Processing Time for large file
If you're using OpCache, it doesn't care one way or another what PHP code you're running, it simply works.... it's simply a bytecode cache. It saves on the parsing time for the code, and will work with...
View ArticleNew Post: Legal blurb -- put it in my code too?
Hello Mark and PHPExcel community, I've enjoyed using PHPExcel thus far to read in and iterate through .csv and Excel files. (I use only a few of the functions of PHPExcel, but they are incredibly...
View ArticleNew Post: Legal blurb -- put it in my code too?
No, you're not legally obliged to copy that license blurb in your own code at all; nor is there any technical need to do so
View Article