New Post: PHPExcel_RichText can not support chinese character in Excel5?
MarkBaker wrote:Please test this with the latest github code, a fix was put in for UTF-8 in Rich Text runs for Excel5 as Work Item 18551 on December 11th Hi MarkBaker, Thanks for your reply, I am...
View ArticleNew Post: PHPExcel_RichText can not support chinese character in Excel5?
https://github.com/PHPOffice/PHPExcel
View ArticleNew Post: Help with Loops
Hi there,I have recently downloaded and installed this PHPExcel package which I have found to be rather amazing for what I needed, more specifically grabbing images from our database.I was wondering if...
View ArticleNew Post: Not Sure if this is a bug or my understanding
Here is the code:while($row = mysql_fetch_array($result)) { $sum_total=$rowNumber * $rowDivide; $image = "media/catalog/product/"; $objDrawing = new PHPExcel_Worksheet_Drawing();...
View ArticleNew Post: Not Sure if this is a bug or my understanding
It's more like a standard error message saying that PHP can't find a file called "media/catalog/productno_selection"... though I'd expect it to complain about "media/catalog/product/no_selection". Does...
View ArticleNew Post: Problem with the formula ROUND
HelloI want to put in a cell of the formula"=ROUND(ROUND(M'.$idexcel.';0)*0.13;0)+ROUNDDOWN(M'.$idexcel.'*2/1500;0)';" idexcel with number corresponding to the line. When I put out this function I get...
View ArticleNew Post: Problem with the formula ROUND
Use comma (,) for function argument separators rather than semi-colon (;) as per English format; and no trailing ; in the formula...
View ArticleNew Post: Not Sure if this is a bug or my understanding
Replied over on the other forums:https://github.com/PHPOffice/PHPExcel/issues/114
View ArticleNew Post: listWorksheetInfo() updated for XMLReader
Like many others, I'm working in a memory-constrained environment, and have a file which I have no control over that reputedly has ~50000 columns and ~10000 rows in one worksheet, however the cells...
View ArticleNew Post: listWorksheetInfo() updated for XMLReader
Unfortunately, the code as it stands won't produce the correct results; you'll get 2 c entries for every column, and 2 row entries for every row, because you'll get both the opening and the closing...
View ArticleNew Post: Leading zeros being dropped from CSV files
PHPExcel: 1.7.8, 2012-10-12PHP 5I currently am using PHPExcel to read from an uploaded file, with xls, xlsx and csv being allowed upload formats. One of the cells in the spreadsheet will often contain...
View ArticleNew Post: Leading zeros being dropped from CSV files
Create a value binder that enforces the data being stored as a string rather than converted to a numeric
View ArticleNew Post: Fatal error: Allowed memory size of bytes exhausted (tried to...
Good day! Having a problem during reading .xls file (size ~21Mb).I`we already tried to increase memory limit up to 64Mb.Tried to use PHPExcel_CachedObjectStorageFactory::cache_to_phpTemp; and...
View ArticleNew Post: Error using PHPExcel on Joomla
Hi. I'm using PHPExcel perfectly on dev, when I try to deploy my module on Amazon (my production environment) I get white screen when I try to use the library. My code is ... //Include Joomla Library...
View ArticleNew Post: Problem to save at PDF format
Hi,I am using PHPExcel to export to excel and PDF. The excel format havent problem, but when i try to export to PDF, i get the next error:PDF Rendering library has not been definedI am using this...
View ArticleNew Post: Problem to save at PDF format
You need to tell PHPExcel what PDF rendering library you are using, either tcPDF, mPDF or DomPDF.... and this needs to be installed separately. Look at the examples to see how it should be defined for...
View ArticleNew Post: setTextRotation not working
Hi,The setTextRotation function doesn't appear to be working for me. Am using PHPExcel version 1.7.6 on php version 5.3.8 with Excel5.I want to alter the orientation for an entire row and have tried...
View ArticleNew Post: How to read just a date from excel into MySql?
For case 'mm-dd-yy', just ask to PHPExcel :$imp_data[$ic]=PHPExcel_Style_NumberFormat::toFormattedString($cell->getValue(),PHPExcel_Style_NumberFormat::FORMAT_DATE_YYYYMMDD2);// give a string like...
View Article