The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
24 views

how to put background cell color in excelwriter.class.php

I'm using excellwriter.class.php for excel conversion, I need to add background color to my data when it's converted to a CVS file, how can i add Cell background color using excellwriter.class.php ...
1
vote
1answer
41 views

Spreadsheet_Excel_Writer in PHP: align a single cell

I am currently working with the Spreadsheet_Excel_Writer in PHP. It works fine with the data I have. But now I want to format my data. Let's say I have 3 columns: Position, Article and Price. The ...
0
votes
1answer
93 views

Development server using Spreadsheet_Excel_Writer not working?

I'm running the latest PHP and pear on a windows machine with apache 2.4 (XAMPP), I have installed the latest versions of OLE, PEAR and Spreadsheet_Excel_Writer. PEAR is installed and working. ...
1
vote
1answer
68 views

Excel::Writer::XLSX Page View and Page Breaks (Perl)

I've searched the API, Google, StackOverflow, etc. trying to find an answer to the following questions, but thus far, my quest has been disappointing. Is anyone out there able to help me out? 1) I'm ...
0
votes
0answers
44 views

Spreadsheet excel reader

SO I am reading a xls fille and saving it as csv file. Every column is read properly but the date column is being read as a string. How can I read it in human readable form so that I can save it as ...
0
votes
0answers
263 views

spreadsheet_excel_writer setColumn

I am having trouble getting the columns to change width using spreadsheet_excel_writer. I want the first column to be longer than the rest, however they are all the same when it outputs.... ...
0
votes
0answers
21 views

ExcelWriter/phpxls encoding breaks file

I'm generating file with phpxls and when i change the default encoding to UTF-8 like this: $worksheet->setInputEncoding('utf-8'); it breaks the file in one place and then random stuff. i will be ...
2
votes
2answers
163 views

Why does the fillment of a bar chart in Excel::Writer::XLSX not work?

I create an excel sheet including a stacked bar chart. Now I want to have no color in the first bar, but it is still blue. Code looks like this: $chart->add_series( categories => [ ...
0
votes
1answer
1k views

PHP Excel Writer Wrap text

I'm using this plugin, I know it's not the best, but I don't have time to rewrite all these scripts. I need to know how enable text wrap. The incomplete documentation on the website doesn't help at ...
0
votes
1answer
236 views

PHP - PEAR Spreadsheet_Excel_Writer - Merging columns fails after Row ~259?

I'm using PEAR's Spreadsheet_Excel_Writer to, well, write Excel files. I'm encountering a rather odd error, though. Without fail, my script stops merging cells around row ~260, plus/minus maybe 2. I ...
3
votes
1answer
127 views

Loop not writing correct values

I have a table that contains all the employees in a company (hr_employees). In addition to this table, is another table that has all their start dates and end dates, plus which type of contract they ...
1
vote
1answer
2k views

File is not readable with Excelwriter and phpExcelReader 2

I use Excel Writer of Harish Chauhan to generate an excel (xls) file. Then I use phpExcelReader 2 to read the file created by the Excel Writer class but have this error all the time : The filename ...
0
votes
1answer
108 views

can I modify worksheet's title after “adding” this worksheet to workbook in spreadsheet_excel_writer?

the problem is that I cant set Worksheet::setInputEncoding to a worksheet that isnt created, but I need to set name in utf=8 format to this worksheet. so for now I got this result: some unreadable ...
5
votes
2answers
761 views

Set the color for a specific word in a Excel cell using Spreadsheet Excel Writer php

I am trying to set the color for a specific word in a cell using Spreadsheet_Excel_Writer but did not found any way in the documentation. I have to set the red color for the first word of a cell but ...