Tagged Questions

xls is the file extension for files created using the default format of Microsoft Excel (prior to Excel 2007).

learn more… | top users | synonyms

17
votes
6answers
15k views

Excel spreadsheet generation results in “different file format than extension error” when opening in excel 2007

The spreadsheet still displays, but with the warning message. The problem seems to occur because Excel 2007 is more picky about formats matching their extensions than earlier versions of Excel. The ...
14
votes
7answers
17k views

convert csv/xls to json

Does anyone know if there is application that will let you covert preferably xls to JSON. ill also settle for a converter from csv since thats what ill probably end up having to write myself if there ...
8
votes
2answers
330 views

Convert XLS to XLSB Programatically?

I have a customer that needs to convert XLS files to XLSB. Has anyone done this programatically, (with or without an add-on --- doesn't matter --- just need to be able to automate it)? I'm looking for ...
8
votes
12answers
6k views

XLS to PDF conversion inside .net

I've been looking extensively for a tool that takes an existing XLS file and converts it to PDF that then gets saved out to disk. The catch is I need to be able to call it from within my .net ...
7
votes
5answers
4k views

Reading xlsx files using Python

I read last year that xlrd was being updated to be able to read xlsx files (Excel 2007, 2010). Is there any news on this development, or the use of other Python utilities? Thanks, Kevin
5
votes
2answers
787 views

How to convert multiple xls files to csv using powershell?

I'm trying to convert multiple Excel files (xls) to csv using the following powershell script: $excel = new-object -ComObject "Excel.Application" $excel.DisplayAlerts=$True $excel.Visible =$false ...
5
votes
3answers
2k views

Get formula from Excel cell with python xlrd

I have to port an algorithm from an Excel sheet to python code but I have to reverse engineer the algorithm from the Excel file. The Excel sheet is quite complicated, it contains many cells in which ...
5
votes
5answers
4k views

Which library should I use to write an XLS from Linux / Python?

I'd love a good native Python library to write XLS, but it doesn't seem to exist. Happily, Jython does. So I'm trying to decide between jexcelapi and Apache HSSF: ...
4
votes
2answers
162 views

generate XLS files using PL/SQL

I would like to generate XLS files using PL/SQL. This includes entring text into cells, coloring cells, bordering cells and merging cells. This may include also: different fonts, sizes, styles, ...
4
votes
1answer
122 views

In .xsl, take a range value like “130-210”, and determine if “86” or “458” is within that numeric range

I'm parsing an .xml file like: <xml> <normalRange>100-200</normalRange> <value>83</value> </xml> In an .xls stylesheet I need to display a value indicating ...
4
votes
5answers
2k views

.NET Excel Library that can read/write .xls files

I'm looking for an Excel library which reads/writes .xls (not .xlsx) files. I'm using excellibrary but it's very buggy and I can't seem to open the files I create. The issue has been known for almost ...
4
votes
1answer
125 views

gem list pdfkit for generating excel ruby

Is there a gem like pdfkit( which converts html to pdf) for converting html table to excel.
4
votes
5answers
307 views

How to Create an XLS from a CSV, List, or DataSet using C#?

I currently have a CSV that I have built using StringBuilder in C#. This CSV is generated by: Querying the Database using LINQ Dumping the Resulting entries into a List Looping through the List and ...
4
votes
3answers
1k views

Recommend a python library to read Excel xls files

Anyone doing this currently? What do you use?
4
votes
3answers
4k views

reading/parsing xls files with python

Could someone provide the best way to read xls files with python (not csv files). if there a built in package which supported by default with python to this this task ?
4
votes
3answers
8k views

Convert excel document (xls) to a plist

I have a pretty straightforward excel document in which I need to use the data in an iPhone app. The xls document has 6 columns, 200 plus rows. I would like to create a plist from the xls document ...
4
votes
4answers
3k views

Open an Excel 2003 spreadsheet with C#. Could not find installable ISAM. Exception

I need to pull data from an xls, I also need have the user be able to change the location of the file it will. So an OleDbConnection seemed like a good start, and it was until the first merged cell. ...
3
votes
3answers
176 views

Exporting to Excel .xlsx from a Python Pyramid project

I know about the XLWT library, which I've used before on a Django project. XLWT is very neat but as far as I know, it doesn't support .xlsx which is the biggest obstacle in my case. I'm probably going ...
3
votes
2answers
342 views

How can I merge two Excel (xls) files in Perl or batch?

I have two files lets say a.xls and b.xls. The first one contains 2 sheets and the second one 3 of them. Can someone let me know if I can merge them using Perl or batch scripting? I want an output ...
3
votes
2answers
601 views

Extracting pictures/images within an Excel file (xls) using PHP

I have a spreadsheet that I would like to import using PHP. I can import the cell data using PHPExcel, but can't figure out how to use images from within the spreadsheet. Is there a way of doing ...
3
votes
1answer
568 views

Why do I get “Project is unviewable” in Excel

I am trying to look at some vba code, and it says "project is unviewable". Why is this, and how do I change it? Details: XLS file extension File created Monday, October 14, 1996 6:33:28 PM What the ...
3
votes
2answers
813 views

Direct downloading a xls file without writing it to the directory by Spreadsheet gem

I am using this Spreadsheet gem to export xls file. I have the following codes in my controller: def export @data = Data.all book = Spreadsheet::Workbook.new sheet = book.create_worksheet ...
3
votes
7answers
611 views

What is the best way to create XLS file in PHP

I am currently trying to figure out the best way to create a .xls file from PHP. It seems like to me that all I need to do is change the header content type to "application/vnd.ms-excel", and then ...
3
votes
3answers
1k views

Any tool to convert PDF to XLs on linux?

All, Is there any tool to convert PDF to XLS on linux.... Thanks.
3
votes
4answers
1k views

Making new colors in JExcelApi

I'm using JExcelApi for generating XLS files. From jxl.format.Colour, I see how to get any of the colors in the "standard Excel colour palette", but not how to create a new color (say, given its ...
3
votes
9answers
35k views

How to change pivot table data source in Excel?

I want to change it from one database to another. There don't appear to be any options to do this on the pivot table context menu
3
votes
5answers
1k views

how can you parse an excel (.xls) file stored in a varbinary in MS SQL 2005?

problem how to best parse/access/extract "excel file" data stored as binary data in an SQL 2005 field? (so all the data can ultimately be stored in other fields of other tables.) background ...
2
votes
3answers
134 views

Create a password protected excel file using apache poi?

I am developing a simple Java program to create excel file using (Apache POI) API. I am using oracle 10g as a database and using ojdbc14 jar. I have a table called USERINFO having 3 columns namely ...
2
votes
2answers
88 views

Write a list of named data.frames to an xlsx file

I trying to use the xlsx package to save a list of named dataframes to an xlsx file. The data frames in the list are all named, but it would be nice if it worked on unnamed elements of the list as ...
2
votes
1answer
56 views

Get the attributes duplicated in a node XML with XSLT

I try to get duplicate address for a object but i don't understand why my foreach doesn't work. I think it's because of the function generate-id(). I expect the following result : <ul> ...
2
votes
1answer
81 views

Create excel without interop and template with or without row and columnspan

Which dll or library can be used to create the excelsheet which is not of a particular format such that a template can be used in this context. While the rows and columns may be merged. Number of ...
2
votes
1answer
124 views

read xls file - mac program

I have a little question, I'm a beginner of mac application, I try to do a little program for mac, a program that read some data from a database file (xls) I would ask you where is the best way for ...
2
votes
1answer
88 views

XslLoadException - This method has the same name and parameter types as another method in this class

I have an XML file and I have an XSL translator file that came with it which can be used to translate the XML file into an xml file using the NAXML standard format. For some reason, though, I am ...
2
votes
1answer
86 views

Use xml comment to generate formatted html output

I'm trying to generate a nicely formatted html document from the comments that I have in an xml file. At present I have an xml file that is used to generate an html list of the xml tables. In order ...
2
votes
2answers
60 views

Looking for the JavaScript equivalent of this PHP script (XSLTProcessor)

Can anyone come up with the javascript needed to do this? <?php # START XSLT $xslt = new XSLTProcessor(); $XSL = new DOMDocument(); $XSL->load('example.xsl'); ...
2
votes
1answer
285 views

Apache POI set selected cell after xls document opens

We have next situation: our system has data export in xls format, this is huge file with many rows and columns. And after user download and open document he see document scrolled to last column and ...
2
votes
2answers
280 views

File size issue. while poi read write

I am using apache poi api to deal with my spread sheet files. I have observed, if we try to edit an existing .xls file it size is not the same as if that same file (same data ) is written in one go.
2
votes
1answer
486 views

Spreadsheet Gem unbearably slow on Ruby 1.9.2

I'm building an Excel parser for my data team, and I've run into something of an issue with the Spreadsheet 0.6.5.1 gem. In Ruby 1.9.2, use of the Spreadsheet.open method immediately hops up to ...
2
votes
4answers
2k views

Convert CSV into XLS

I'm working in a web application separated in blocks and I'm getting a CSV object from a work mate of mine which I must convert into XLS to be passed into an Excel Processor they built. This CSV ...
2
votes
3answers
1k views

Read data from doc, xls files with PHP

I wonder is it possible to read data from doc and xls files and put the readed content into image files(create page samples of the document). For example I have documents that I want my customers to ...
2
votes
1answer
238 views

Not using colnames when reading .xls files with RODBC

I have another puzzling problem. I need to read .xls files with RODBC. Basically I need a matrix of all the cells in one sheet, and then use greps and strsplits etc to get the data out. As each ...
2
votes
4answers
200 views

Question about increasing performance with xls operation

I have simple metohds to export DataTable to xls using string. Number of columns is 5 - 30, and number or rows might be from 1 to 1000. Sometimes there is problem with performance, and I please for ...
2
votes
1answer
233 views

PHP generated Excel file is different when downloaded

I have a PHP file that generates xls files using the module found at http://pear.php.net/package/Spreadsheet_Excel_Writer/ I can create the sample document just fine and when I open it, it looks ...
2
votes
1answer
454 views

Smart XLS examples?

I want to use the Smart XLS library for dealing with excel files in C# (particularly because it can generate charts, and it's price is significantly lower than Aspose Cells), but I can't find any good ...
2
votes
5answers
6k views

Convert .csv to .xls in Java

Does anyone here know of any quick, clean way to convert csv files to xls or xlsx files in java? I have something to manage csv files already in place and I need the extra compatibility for other ...
2
votes
2answers
2k views

Reading numeric Excel data as text using xlrd in Python

I am trying to read in an Excel file using xlrd, and I am wondering if there is a way to ignore the cell formatting used in Excel file, and just import all data as text? Here is the code I am using ...
2
votes
2answers
1k views

Spreadsheet_Excel_Writer data output is damaged

I use Spreadsheet_Excel_Writer to generate .xls file and it works fine until I have to deal with a large amount of data. On certain stage it just writes some nonsense chars and quits filling certain ...
2
votes
4answers
362 views

Working with XML & XSL

FIRST EDIT I'm fetching the Child 1 tag into a DropDownList in a C# form, Plz suggest the best practise code (C#) for deleting the Parent tag & all it's child tags in an XML file. Example: ...
2
votes
3answers
600 views

c# Converter from html to pdf, xls

Hi i'm looking for a free asp.net library for converting html in pdf, xls formats? thanks
2
votes
2answers
2k views

django download csv file using a link

I am a new to django and python. Need some guidance in this quest. Case: When the user hits the submit button on a form, it should display Success page and a link where they can download the results. ...

1 2 3 4 5 6