New Post: solution for numbers stored as text
I am generating one report but it is showing error message with values like 23,222 or values with % symbol.It is showing error as numbers stored as text.Manually i am converting there values to...
View ArticleNew Post: solution for numbers stored as text
It is the $cellVal variable that contains values with the separator of thousands or percentages? In this case, it must detect these features to 'clean' the value and apply the appropriate format.
View ArticleNew Post: PHPExcel Zip requirements
I am using php 5.2.12 with my PHPExcel. It does not work stating I need the ZIP dll. I have done everything in the INI yet still nothing seem to do any good. Any help would be appreciated.
View ArticleNew Post: solution for numbers stored as text
Yes $cellVal variable that contains values with separator or percentages. Which appropriate format you are talking about?
View ArticleNew Post: Get highest row ignoring empty results from formulas
I have a table with 1000 rows. But, the user can write data only for the 10 first rows. When I call getHighestDataRow() or getHighestRow() I still getting 1000 instead of 10. This is because I have...
View ArticleNew Post: solution for numbers stored as text
I'm talking about number formats that Excel must apply and therefore define with PHPExcel. $objPHPExcel->getActiveSheet()->getStyle('A1')->getNumberFormat()->setFormatCode...
View ArticleNew Post: PHPExcel Zip requirements
What is the zip extension is visible in the phpinfo?
View ArticleNew Post: How to duplicate a Sheet
Hi, I have copied the develop pack but I still have the issue Argument 1 passed to PHPExcel_Cell::attach() must be an instance of PHPExcel_CachedObjectStorage_CacheBase, instance of PHPExcel_Worksheet...
View ArticleNew Post: phpexcel validation issue for invalid values
Here's my problem, I have a validation in one of my excel.$objValidation = $sheet->getCell('G17' )->getDataValidation(); $objValidation->setType( PHPExcel_Cell_DataValidation::TYPE_DECIMAL );...
View ArticleNew Post: ZipArchive warning
I also have the same problem and no idea how to fix it. I can manipulate files in other ways on this website and this code also worked on another development server. I have checked all permissions to...
View ArticleNew Post: ZipArchive warning
read a few more archived posts about this problem. someone said to pay attention to folder addresses. I changed the virtual folder to actual folder address and now it works. Thanks!! for newbies ......
View ArticleNew Post: solution for numbers stored as text
I have included AdvancedValueBinder.php PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); in my code and it is working fine for all :) except number format like 23,222. I have...
View ArticleNew Post: Why we are NOT getting the graph in html page when using the...
Want to see the html with tabular and graphical view when using the 36chartreadwriteHTML.php What we are seeing is only the TABULAR View. we should have see the graph - which is a line graph in this...
View ArticleNew Post: solution for numbers stored as text
'23,222' is not numeric but string, so it does not cross the first test. Then why force it in text (in addition, the style will not serve much)? If it is a number with thousand separators, removes...
View ArticleNew Post: phpexcel validation issue for invalid values
You must define a minimum value (Formula1) and a maximum value (Formula2)
View ArticleNew Post: How to duplicate a Sheet
I was having the same problem others have found with clone, and using the dev code fixed it. Thanks
View ArticleNew Post: solution for numbers stored as text
Working fine:)..thanks But if i used PHPExcel_Style_NumberFormat::FORMAT_NUMBER_COMMA_SEPARATED1 then for large values like 1234567899.66 it is showning ######### in excel sheet.Need to drage the...
View ArticleNew Post: Writing one sheet with only 100 cells causes using more than 1024 MB !
I'm writing an Yii 1.1.14 app. At a point, user exports to excel. I load in memory 100 values using sql, and my memory_peak_usage is under 128 MB. Then I start exporting to excel and when at 90% of...
View ArticleNew Post: CSV FILE CONVERTING BIG INTERGER AS EXCEL DEFAULT VALUE LIKE...
Yes, I confirm this is a common and weel--and-sadly-known issue of all excel versions. If it import a csv with large numbers it try to apply scientific notation. You must do implicit import of csv into...
View Article