New Post: Can not populate any Excell cells beyond 3rd row...
Hello, I'm using PHPExcel 1.79. The issue that I'm having is populating and formatting any cells beyond the 3rd row. I can populate any cells in the 2 rows, but beyond that... nothing. Has anyone else...
View ArticleNew Post: Can not populate any Excell cells beyond 3rd row...
OK... Figured out the issue. The problem was with the following: $objPHPExcel->getActiveSheet()->getStyle('A2:ZZ2') After changing the "ZZ2" to a more realistic value the cells are populating...
View ArticleNew Post: Can not populate any Excell cells beyond 3rd row...
The column limit for BIFF files (Excel5) is IV, the column limit for OfficeOpenXML (Excel2007) files is XFD
View ArticleNew Post: Total Number of columns in a PAGE
After I have created a spreadsheet using PHPEXCEL, which by the way can contain any number of columns, is there a way to calculate the number of columns there are on the first page(there can be...
View ArticleNew Post: Can not populate any Excell cells beyond 3rd row...
Hi Mark,Thanks for that info. I wasn't aware, but should have known, that there is a column limit.----------Keiland PullenNCC ITS Web - Team630.637.5464
View ArticleNew Post: Reading - text but get Expontential values from cells
Either with getValue(), or getFormattedValue() If a cell has a value like 01908E1 the value i get is 19080 but this works 01919E The excel file is formatted as general/text
View ArticleNew Post: Cannot load xlsx file to read
I entered this under the ISSUES tab, but I am not sure where this type of post acutally belongs, so I'm posting it here as well. I've used this PHPExcel class for .xls files prior to this with success,...
View ArticleNew Post: Creating xls sheets from csvs without iterating?
In my app, I have code that generates 5 CSV files from the MySQL OUTFILE command. Is it possible to take those 5 CSV files and create one xls document with 5 sheets (one csv per sheet)? The CSV files...
View ArticleNew Post: Creating xls sheets from csvs without iterating?
It is possible, but looping is more memory efficient than reading an entire CSV file into memory and using fromArray() to inject it into a worksheet in one step.... because you don't have the memory...
View ArticleNew Post: Image distortion/print area error
Resetting the print area didn't work for me. I tried looking again and I found this...
View ArticleNew Post: How can to read the value of a cell of a new .xlsx?
Hi! I have created an .xlsx file with about 2500 cells on it, now I'm in need of read and update the value of few cells that were created on that new file. I know what are the cells to change, is it...
View ArticleNew Post: Setting image using PHPExcel it width is changed
Sorry, the question is still active for me. Is somebody know the answer ?
View ArticleNew Post: Data Validation
Still no reply :( Can anyone who knows about this update me with a possible solution for this issue? Thanks in advance!
View ArticleNew Post: Excel hanging when loading generated file from phpexcel
I have a excel file with predefined styles and drop downs in 100 rows. I am keeping them and writing in those existing rows, the file is being generated without any error. But when i am opening the...
View ArticleNew Post: Error excel 2013 chart
Kelvin I have experienced the same issue. I have an Excel document with Charts and I use PHPExcel to update the data. When opening the document back into Excel the worksheet is either corrupted or some...
View ArticleNew Post: Charts
2 questions: 1) What are the options for "DisplayBlanksAs"$chart1 = new PHPExcel_Chart( 'chart1', // name $title1, // title $legend1, // legend $plotarea1, // plotArea true, // plotVisibleOnly 0, //...
View ArticleNew Post: Track Changes
Is there a mechanism in PHPExcel to turn on the track changes feature in Excel...? Further, would there be a mechanism to see what cells have been changed if said feature was turned on?
View ArticleNew Post: How can to read the value of a cell of a new .xlsx?
Replying my own question... Yes it is possible. Use $phpexcel->getActiveSheet()->getCellByColumnAndRow($x,$y), where $x is the column and $y is the row; then you can update it again:...
View ArticleNew Post: Avoid rand() recalculation when opening a woorkbook
Hi all, I apologize in advance if the question had already been asked. I'd like to know if it's possible to "block" the evaluation/calculation of the rand formula when opening a workbook with PHPExcel....
View ArticleNew Post: Avoid rand() recalculation when opening a woorkbook
At this point, no it isn't. Excel flags certain functions such as RAND() as volatile and changes the behaviour of whether or not to recalculate cells in a spreadsheet on load based on that, and the...
View Article