New Post: auto recalc
I am new to PHP Excel. I try to understand what happens when a cell values changes. Are the dependant formula's automatically updates. For example when we execute this code<?php require_once...
View ArticleNew Post: auto recalc
Calculation results are cached for performance. If you change the underlying values, then you need to flush that cache$tokens = PHPExcel_Calculation::getInstance( $sheet->getParent()...
View ArticleNew Post: ERR_CONNECTION When use phpexcel read excel 2003 file
I want let excel data into mysql. But I have problems when use phpexcel read excel 2003 file, the connection be suspend. But its success when read excel 2007 file. here is my code. the data will insert...
View ArticleNew Post: phpexcel save value in hours format
I want to save a value in the excel but so that the cell is already saved as hour format. As text format gehts that is standard.
View ArticleNew Post: PHPExcel 1.8 The file created has nothing but garbage
I am trying to use PHPExcel to export reports. I have it setup so that it will pull from my MSSQL DB just fine, but it doesn't add any of the data, just garbage. I've commented out the parts where it...
View ArticleNew Post: PHPExcel 1.8 The file created has nothing but garbage
I figured out part of it. I have a white space character of some kind at the beginning of the file, that is what is causing the garbage printing. I was able to remove some of it, all that I could find...
View ArticleNew Post: PHPExcel Buffer Advice
I need PHPExcel to import data from a spreadsheet - no problem so far - but I need to ask the user to identify each column before uploading fully. Is the best way to do this by creating my own buffer...
View Article