New Post: Date imported as input mask, not as value
The 25 was just to test how that function worked. But it just inputted dd.mm.yyyy. The problem is, that in Excel, the date is shown, but in PHP, dd.mm.yyyy is shown. I want to add an excel file to a...
View ArticleNew Post: Date imported as input mask, not as value
Please don't use textual representation for dates, either in PHPExcel, in PHP, or in a database... if you're working with proper Unix/PHP datetimestamps or with DateTime objects, then you have the...
View ArticleNew Post: Not all Chart values are shown
Ha - thank you - I saw you posted on Stackoverflow as well - appreciate the double response.
View ArticleNew Post: Difference in behavior with PhpExcel running on windows and Ubuntu
Hi Mark, Many thanks for answering my post. I still have not figured this out. I cant see a way to upload files on this forum but here is the phpinfo data from both servers....Here is the MBSting...
View ArticleNew Post: Difference in behavior with PhpExcel running on windows and Ubuntu
kseudo wrote: Hi Mark, Many thanks for answering my post. I still have not figured this out. I cant see a way to upload files on this forum but here is the phpinfo data from both servers.... Here is...
View ArticleNew Post: Problem with an xls' file --> Fatal error: Call to a member...
Hi, I have a strange problem with the exemple PHPExcel's files and a specific excel's file. It return this error : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -...
View ArticleNew Post: Problem with an xls' file --> Fatal error: Call to a member...
I have more information... I found that the problem come from a column... The cells' column's values start with an apostrophe. If i delete this colmun there isn't any problem... How can i do ? Because...
View ArticleNew Post: read border style in ceil
$objWorksheet->getStyle('C2')->getBorders()->getTop()->getBorderStyle() I read exel file and have detected bolden border in ceils
View ArticleNew Post: Error while converting xlsx to csv in Ubuntu environment
Hi Mark i have customized a code and using it for the conversion of xlsx file to csv. which is working fine in windows xp but it is showing this error when i execute it in ubuntu os Fatal error:...
View ArticleNew Post: Can someone please give a working example of radar chart phpexcel
Hi I am in a fix... The client has asked for a radar chart in php excel but i cant figure out a way to make it... I can see examples of bar chart,pie chart etc but not radar chart.. Would be great if...
View ArticleNew Post: Inserting a Row in PHPExcel
Hi There, I am looking to write an array to a sheet so that it goes along the columns inserting the values from the array, From A1 Right up to CC12 etc. I can't seem to find an efficent way to do...
View ArticleNew Post: problem with downloading excel from php://output
Hi gyus. I am writing with writer an excel5 sheet which queries a database. I cant get the file though even if the file appears to be written to excel from php. $excel = new PHPExcel();...
View ArticleNew Post: Loop through Columns
Is there a function that loops through columns. The reason I ask is because I want to loop through columns and drop data for specific columns in Mysql. I think it would be easier for me to build an...
View ArticleNew Post: Problem on Printing Zone
Hello, I have a currently a problem of printing zone (I think). I open a .xls template that I fill with informations, then save. Once I did that, when I open the new generated file, I have white zones...
View ArticleNew Post: Problem with an xls' file --> Fatal error: Call to a member...
The apostrophe indicates that the cell's value is a string. If you are using the getValue() method to retrieve the cell's content then try using getFormattedValue() instead. That might sidestep the...
View ArticleNew Post: Newlines in Data Create Strange Repeating Values
I've got some data from form entries with newline characters. Say something like "hello\nbye". If I put the value in cells like this: $sheet->setCellValueByColumnAndRow($col, $row, $val); I get a...
View ArticleNew Post: Loop through Columns
There is no built-in function for looping through columns, only for looping through rows and for cells within rows. You'd need to do this yourself. The most obvious would be to loop through each row...
View ArticleNew Post: Inserting a Row in PHPExcel
Have you looked at the worksheet's fromArray() method?
View ArticleNew Post: problem with downloading excel from php://output
Headers should not be: header(\"Content-Type: application/vnd.ms-excel\"); header(\"Content-Disposition: attachment; filename=$legit\");but header("Content-Type:...
View ArticleNew Post: Can someone please give a working example of radar chart phpexcel
I've just added a radar chart example to the latest github develop branch (33chartcreate-radar.php) though you'll need to pull the latest develop branch with a fix for the X-Axis labels
View Article