Quantcast
Channel: PHPExcel Forum Rss Feed
↧

New Post: Charts/graphs in PDFs - changing size, position, ticks?

I'm successfully writing bar charts in Excel files and outputting them as PDF. However, when shown in PDFs, the chart is rendered poorly meaning:yaxis ticks are cut off when too long (more than about 5...

View Article


New Post: Creating a Slicer using PHPExcel

Hi, I have searched unsuccessfully to see if there is a way to utilize the Excel Slicer functionality with PHPExcel. I have not found any options for this. Is this correct? I've even tried creating a...

View Article


New Post: Repeating column headers by group

I have my query result grouped by categories, and when the category changes I want to display the column headers again, in html works fine but I can't make it work with PHPExcel, can this be done? I'm...

View Article

New Post: How to get value from cell with formats preserved

I am working on Excel to Word conversion. Some of the text in the excel cell may have formats (bold, underline , superscript, etc., ) and they are not retrieved exactly as it is using getValue() or...

View Article

Image may be NSFW.
Clik here to view.

New Post: How to set column value contain non-ascii

Hy, i am new in using phpexcel. currently my system using mass upload data to the database, and mostly the data is copy and paste in to excel. File type mass upload is comma separated value. so their...

View Article


New Post: How to set column value contain non-ascii

If you know what charset the csv file is using, then tell the PHPExcel Reader that using the Reader's setInputEncoding() method before calling the load(); otherwise PHPExcel assumes that it's UTF-8

View Article

New Post: How to set column value contain non-ascii

$filename = date('H-i-s')."_fail_sp"; /** Error reporting */ error_reporting(E_ALL); /** Include path **/ ini_set('include_path', ini_get('include_path').';../Classes/'); /** PHPExcel */ include...

View Article

New Post: Help! Do not correct / not read xlsx file! What is the problem?

Do not correct / not read xlsx file! What is the problem?2.xlsx The only problem with this file. MSWord opens ok. Calc only partially. Phpexel only partially.

View Article


New Post: How to make it work PHPExcel with php 7?

Hello How to make it work PHPExcel with php 7?, you can do something in the code? or you have to wait the next version of PHPExcel? Thanks for your help.

View Article


New Post: Cann't save excel 2007 document with PHPExcel 1.8.0 at the combat host

Hello! By means of PHPExcel 1.8.0 I've developed the php code, which generates an excel file. This code works well at the localhost server but at the combat host it doesn't work. As I found out the...

View Article

New Post: UPDATE EN PHPEXCEL

good day, I want to know if I can use a then updated, rather than an insert to import data from Excel to a mysql table. it's possible? I try to feed a table and existento with a difference between some...

View Article

New Post: Cloning the calculation engine is not allowed!

I've created my first project with PHPExcel. Everything works fine local, but when I upload to server I've got this error: Fatal error: Uncaught exception 'PHPExcel_Calculation_Exception' with message...

View Article

New Post: text in excel cell are cut :(

$sheet->setCellValueByColumnAndRow(6,$ligne,$data['description']); echo $sheet->getCellByColumnAndRow(6,$ligne)->getValue(); We put $data['description'] which is long text in column 6 ligne 1...

View Article


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 Article

New 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 Article


New 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 Article

New 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 Article


New 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 Article

New 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 Article

New 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