New Post: command to check if the sheet exist
On 09/09/2014 09:05, bogski wrote:$exists = $objPHPExcel->sheetNameExists('Worksheet1'); If __Worksheet exist__ { } else { printf "Worksheet does not exist"); } $exists =...
View ArticleNew Post: Problem with PHPExcel joomla, no matter libraries and does not read...
I want to get data from a csv or xls excel to make a massive load of employees in my mysql DB, but first show all records in a table. the project is in php with joomla .. I tried this: . include...
View ArticleNew Post: Problem with PHPExcel joomla, no matter libraries and does not read...
This isn't a PHPExcel problem when you're using Spreadsheet_Excel_Reader
View ArticleNew Post: Export excel template with data to pdf
Hi all, I'm using phpexcel to convert excel to pdf, but not working. I have follow 01simple-download-pdf.php and it run, but my code not working. This is my code:$objReader = new...
View ArticleNew Post: How to unload the excel file loaded before?
I have a VERY BIG EXCEL FILE, and need to read it into an php array, then format it using my rules, finnaly I need write the formatted data into a new excel file. I implemented the action into 3...
View ArticleNew Post: How to unload the excel file loaded before?
Disable the cache function, and nothing at all will work.... try using some of the alternatives to the default "cache in memory" that are described in the manual, because these should the reduce memory...
View ArticleNew Post: Export excel template with data to pdf
What makes you think the problem is with the data load? And what debugging steps have you taken to try and find out what the problem is? Are there any error messages? Has anything been written to the...
View ArticleNew Post: How to unload the excel file loaded before?
So glad for your help, many thanks. I'm using the method cache_in_memory_gzip now, and the memory usage is reduced 1/2 more, but accordingly, the speed reduced too :) I know this is not the best...
View ArticleNew Post: How to unload the excel file loaded before?
A PHPExcel object can't easily be destroyed because the hierarchy of spreadsheet->worksheets->cells contains cyclic references in that the cell also references the worksheet, and the worksheet...
View ArticleNew Post: How to unload the excel file loaded before?
Thanks for your kindness! I'll try it later. Regards, Dany.
View ArticleNew Post: How to skip first 3-4 rows while reading an Excel file.
Just wanted to add solution for PHPExcel version 1.8.0. Just pass row offset to getRowIterator method./** * Get row iterator * * @param integer $startRow The row number at which to start iterating *...
View ArticleNew Post: duplicate row with comboBox help
hello i create xsl file : i want duplicate row 3 - 10 times like this: and this is my code to do this:<?php set_include_path(get_include_path() . PATH_SEPARATOR . 'Classes/'); require_once...
View ArticleNew Post: 33chartcreate-pie.php
Hi, Does anyone have a working example of '33chartcreate-pie.php'? Every time it creates a .xlsx it says "We found a problem with some content in '33chartcreate-pie.php' Do you want us to recover as...
View ArticleNew Post: 33chartcreate-pie.php
The latest develop branch on github has a working version This problem was fixed. The difference is changing the Plot Grouping from PHPExcel_Chart_DataSeries::GROUPING_STANDARD to NULL
View ArticleNew Post: Cannot get chart to display
Hi, first time here. I have an xlsx file which holds a simple table and a line chart. What I hope to be able to do is fill the values in from a database to update the chart (I'm not at that stage yet)....
View ArticleNew Post: searching files very slow
Hello! I created a simple program which is supposed to search 'query' in the first column of all .xls or .xlsx files in a given 'directory' and then return each row (6 cells) where 1st cell is matching...
View ArticleNew Post: searching files very slow
Suggestion would be to use read filters, and do each file in 2 passes: Use a first read filter just to read column A, as that's what you're searching on; do your search and build an array of the rows...
View Article