New Post: Strange behaviour with formulas in different sheets
It works since I have changed the Locale setting. So the formulae are translated correctly. But still...By changing the order of the sheets and setting setActiveSheetIndex() accordingly gives #N/A as a...
View ArticleNew Post: AddExternalSheet : Empty cells with incorrect style
Hello, I am using AddExternalSheet to copy a sheet in a new Excel file. The original file has a table (with values, and styles/colors). The new file has correctly the same table (with same values and...
View ArticleNew Post: From Excel (xls/xlsx) to MySql Database
LWol wrote: Well... You need to have something like : INSERT INTO YourTable (FieldUsername, FieldEmail, FieldGender, FieldCountry) VALUES ('psb', 'psb67@hotmail.com', 'M', 'India'), ('naga',...
View ArticleNew Post: From Excel (xls/xlsx) to MySql Database
Glad to have been able to help.psb1967 wrote: Now, I will try to make the update automatic by adding auto-save vb script in excel sheet. Can you develop what you would like to realize?
View ArticleNew Post: setPreCalculateFormulas removes formulas from sheet?
Hello, i can confirm that it is possible to write "unknown" formulas in excel setting setPreCalculateFormulas to False I did it with some special bloomberg functions with no problem at all..
View ArticleNew Post: From Excel (xls/xlsx) to MySql Database
LWol wrote: Glad to have been able to help.psb1967 wrote: Now, I will try to make the update automatic by adding auto-save vb script in excel sheet. Can you develop what you would like to realize?...
View ArticleNew Post: How to apply a rule for an AutoFilter?
Added an example to the /Examples fo;der, and updated the Autofilter documentation with:5. Executing an AutoFilter When an autofilter is applied in MS Excel, it sets the row hidden/visible flags for...
View ArticleNew Post: inserting sql table rows to excel file
hi, i have 150 rows and 40 columns in a sql table..i am displaying the entire table in a web page..now,what i want to do is create a link on that web page that will take the entire table and insert it...
View ArticleNew Post: Load multiple sheets
Hi, currently i have $objReader->setLoadSheetsOnly("sheet1"); how can i load sheet1 and sheet2?
View ArticleNew Post: Load multiple sheets
$objReader->setLoadSheetsOnly( array("sheet1", "sheet2") );
View ArticleNew Post: inserting sql table rows to excel file
can u give an example...i tried looking in PHPExcel developer documentation..but thn dats not enuf..
View ArticleNew Post: inserting sql table rows to excel file
$dataArray = array( $year, $period, $country, $eDate, $income, $expenditure, ); $objPHPExcel->getActiveSheet()->fromArray($dataArray, NULL, 'A'.$row++);or $mysqli->real_query("SELECT id FROM...
View ArticleNew Post: Promblem with formulas and excel templates...
I have a problem when I want to enter a formula in a cell in my templates using PHPexcel. my code: error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE);...
View ArticleNew Post: Promblem with formulas and excel templates...
Formulas do not yet work with row or column references. either rewrite your formula to use a range reference, '=VLOOKUP($D$5,GENERAL!J1:N512,2,0) or disable PreCalculated formulas on write...
View ArticleNew Post: Writing multiple files
Hi I'm using PHPExcel to save datas comming from my db but I'd like to create 2 different files (workbook) in the same time, is it possible ? To be more specific, I know how to create and use multiple...
View ArticleNew Post: Writing multiple files
Create two workbooks ($objPHPExcelFile1=new PHPExcel(); $objPHPExcelFile2=new PHPExcel();), use the save method for each to a temp directory, zip the two files. If this uses too much memory, created...
View Article