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

learn more… | top users | synonyms

0
votes
0answers
12 views

xml to xls transformation - when xmlns is an urn and not uri no data is shown

i'm working on an xls that works fine when the xml xmlns is a URI. But when the xmlns is a URN then it doesnt work. Example: //xml file header xmlns="URI": <?xml version="1.0" ...
0
votes
1answer
11 views

Read xls in robotium script

I try to read an xls(simple trial) but get error: FileInputStream fi; File f = new File("C:\\tdata\\td.xlsx"); fi = new FileInputStream(f); Workbook w = Workbook.getWorkbook(fi); ...
-2
votes
1answer
18 views

Ordering of sheets in excel in apache poi

I want to rearrange the sheets being generated before writing it to an xls document using apache poi in java. Is there any way of doing it? For ex:sheet Names are "RF for 10","Blended for 10","RF for ...
0
votes
1answer
42 views

In python removing rows from a excel file using xlrd, xlwt, and xlutils

Hello everyone and thank you in advance. I have a python script where I am opening a template excel file, adding data (while preserving the style) and saving again. I would like to be able to remove ...
0
votes
1answer
19 views

Import multiple XLS files into SQL Server each one with a different Sheet Name

What's the easiest way to import 500 XLS files all with the same structure but each one with its own unique Sheet name ...into SQL Server? Alternatively, I have combined ALL XLS files into a single ...
0
votes
0answers
37 views

PHPExcel - how to write to file in chunks

I am using PHPExcel to export data from a database in both CSV and XSL file format. The CSV part works fine but I get the below error when trying to convert the CSV to XSL. Allowed memory size of ...
1
vote
1answer
27 views

How to attach a flat file into informatica Email?

I want to send a mail to some users after workflow is done. This email should contain 3 xls file or 1 xls file with 3 sheets. The xls file contains a query result -less than 50 rows- which is loaded ...
0
votes
0answers
13 views

PHPExcel generate htm instead of xls

I need to generate xls files using PHPExcel class, but I have problem with extention: header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); ...
0
votes
0answers
46 views

Mass conversion of thousand of excel files from xlsb to xls in sub-folders

I have looked for an answer everywhere for this but couldn't find any so hopefully someone might be able to offer some assistance. I have a few thousand of excel files in a folder-subfolder structure ...
-3
votes
0answers
31 views

Coping data from multiple files into one Excel Macro [closed]

There are 500 folders. Each folder contains about 10 excel (.xlsx) files. However, each folder has a file named 2.xlsx. From a sheet 'datasheet' in this file, i need to extract data of dimension 20*10 ...
0
votes
2answers
188 views

Trying to import csv and xls files to an SQL database using ASP.NET and C#

I am a student and quite new to programming, and I was given a task to do using ASP.NET and C#, without being taught either. The plan is to learn to teach ourselves. The task I am stuck on is making ...
0
votes
1answer
15 views

not getting date properly from the xls sheet

I'm using ubuntu for my coding., I'm importing the xls file data into my controller, in which one field is date, I've formatted the cell with date format, when I look into the imported data ...
-4
votes
1answer
24 views

Translate Text from an Excel in Java [closed]

i hava a simple problem and my head tells me it is very easy: I read some Datas out of a Database and get technical Texts. Now i cant show my customers the technical things and i made a xls which ...
0
votes
0answers
20 views

sava as pdf a file xls with java program automaticly like Microsoft Excel

I'm totally stuck on the problem of "save as a PDF file xls" with a java program .. I know there are SEVERAL solutions as iText API, appach.poi, but I want an automatic thing (I'm not forcing browse ...
0
votes
0answers
19 views

Jasper Plugin for Grails: method <init>()V not found

I'm using Jasper Plugin v0.9.7 for Grails and it works perfectly for every file format - except XLS. Whenever I try to create a XLS file from a .jrxml file, I get the following error: Message: ...
0
votes
0answers
37 views

Reading from login.xls file and append results in same file?

Workbook workbook = Workbook.getWorkbook(new File("C:\\Users\\Tsss-Pc1\\Desktop\\login.xls")); Sheet sheet = workbook.getSheet(0); String uname = sheet.getCell(0, 0).getContents(); ...
1
vote
1answer
48 views

How can I open an xls file, save it, and then close it all in java?

How can I open an xls file, save it, and then close it all in java? I currently have a workaround where I make java write a vbs script that does the same thing Set excel = ...
1
vote
1answer
19 views

What xls parser library is used in open office?

What does open office use for importing xls files and csv files. Is it a library (or a body of code that can be easily packaged) that I could use in my project for importing xls and csv files? I'm ...
0
votes
0answers
18 views

how to export data from a php page to a .xls excel file [duplicate]

I've tried several complex codes of doing it but i didnt get sucess with any of those solutions I have a php page that gets data from a mysql database I would like to have a link that export data ...
0
votes
1answer
54 views

Copy XLS values into text file which contains content

I have an existing text file created in a certain format, so that my VBS program can read it and use the file as a data store to validate the similar values in my application. I now wish to update ...
-1
votes
0answers
31 views

Read XLS file formulae's and convert to text file

We have a complex excel sheet which calculates values based on other workbooks and sheets and so is full of formulas and VBA which populate the sheet. I need to read this file and copy the text into ...
-1
votes
1answer
70 views

Renaming an excel(.xls) sheet without using interop and third party dlls

I am getting an excel(.xls) file as a byte array by rendering a local report(rdlc) and writing it into a location. I need to rename the excel sheets. I am not allowed to use third part dlls and ...
0
votes
1answer
68 views

Rails 3 CSV and XLS export doesn't give file extension

My users can generate a report of some data, and decide what format they want. They can choose HTML,CSV or XLS This is the form (Omitted the data stuff, this is just the format selector) <%= ...
0
votes
0answers
31 views

Get xls file mime type using php

I have xls file (From ms ecxel -> save as -> workbook excel 97-2003) Then I upload this file on server using php, this is my code: $finfo = finfo_open(FILEINFO_MIME_TYPE); $type = ...
1
vote
1answer
29 views

xlrd original value of the cell

I'm reading xls file using xlrd. The problem is, when xlrd reading value like this "12/09/2012", i get result like this "xldate:41252.0". When I use xlrd.xldate_as_tuple, i get this result: (2016, ...
0
votes
0answers
151 views

java.lang.IllegalArgumentException: Your InputStream was neither an OLE2 stream, nor an OOXML stream

When I'm reading Excel file(.xls format), I keep getting an Exception, java.lang.IllegalArgumentException: Your Input Stream was neither an OLE 2 stream, nor an OOXML stream. I Go-ogled and found that ...
0
votes
2answers
39 views

How to easily read xls doc on dynamic site?

Programming noobie here. I'm working on a website where users fill out a form and based on their input a given value from a big excel sheet is displayed on the page. I know JS, jQuery, HTML/CSS, and ...
1
vote
1answer
30 views

Saving IMAP XLS Attchements with PHP

I have written a script to check my Gmail account and extract XLS file attachments from the message. I am using the following code to grab the attachment from the body: $mege = ...
0
votes
1answer
114 views

Cannot open .xls file downloaded using asp .net application

I had created an asp .net web application that reads data from database, store the retrieved data in an excel sheet and download the excel sheet . All this happens in a single button click . All these ...
-2
votes
0answers
21 views

Create multiple spreadsheets in XLS with PHP [closed]

using PHP is possible create a XLS with multiple spreadsheets? Or, i need using a library to do this?
0
votes
1answer
55 views

Dynamically Generated XLS Drop Down Field via PHP

I am curious to know if anyone has ever found a way to dynamically create a XLS, pre-populated with a drop down field on each row? For example if I wanted to provide a client with a list of all their ...
-1
votes
0answers
31 views

Converting XLS Rows as Separate XML files

I am looking for code where I can convert the Data (in MS EXCEL rows) into separate XML files. Basically, Every row of data from MS Excel should be converted to a separate XML file. I am aware of how ...
1
vote
1answer
46 views

Retrieve title from thousands of ppt/xls/doc files

As the result of recovering data from a storage catastrophe, I ended up thousands of files named 0000000001.{doc,ppt.xls}, 0000000002.{doc,ppt.xls}, etc. The files are not corrupted. Now my users ...
-1
votes
1answer
34 views

How to merge several .xls files? [closed]

I have several .xls files, they structure are same. I need merge this files as one .xls file. How to make this?
0
votes
1answer
37 views

How do I most easily import from XLS into my rails app database?

I started a project in Google Spreadsheets. I am now learning Rails instead. But I still have about 1000 records I'd like to import, to kick off my database. This railcast is great, but I don't ...
0
votes
1answer
61 views

Excel file reader/writer libraries for PHP issue for Date

I am using simplexlsx.class.php to read xlsx file type. It's giving problems when the file contain date field in the excel file. here is my coding require_once "simplexlsx.class.php"; $xlsx = new ...
0
votes
1answer
98 views

Too slow while reading and writing content cell by cell

I have developed an application which read 32 xls file and write their content into one excel file. Program is running fine but it's too slow(taking 20-25 mins in case of 32 files) because I am ...
0
votes
0answers
94 views

How to get the row count in a excel sheet with Apache POI with Event API

I am using Apache POI Event API to read large excel worksheets. The whole operation is lenghy, becouse I have to put all the data to database. I would like to display progress of import, ie ...
0
votes
0answers
97 views

Reading excel 2003 files with apache POI - FileNotFound

I am writing some code to import Excel files to database. The files could be big (thousands of rows), so I am using the Event API. POI version is 3.9 I am opening the file like this: FileInputStream ...
0
votes
1answer
68 views

How to read from and write to the same EXCEL file using Ruby?

I want to read from and write to the same EXCEL file (file.xls) using Ruby. I tried to use Roo gem which doesn't allow to write to the file. Now I am using Spreadsheet gem, but I can't update existing ...
0
votes
0answers
23 views

How to import specific column cell data from spreadsheet to populate text document?

I'm totally unfamiliar with spreadsheets. I can use either Google Docs or OpenOffice/LibreOffice for this. Or even InDesign if it can be done there. Basically what I'm trying to achieve is print ...
1
vote
2answers
65 views

How to build a data frame from several xls files?

I am trying to build a data frame from several xls tables I downloaded: states <- c("A","B","C","D") for(i in states){ ...
0
votes
2answers
141 views

fetching zero cells in xls file using Spreadsheet::ParseExcel

Sorry for bothering you guys! i know i am annoying. i hope I can be more specific this time. The original post is here: http://stackoverflow.com/questions/15835021/using-spreadsheetwriteexcel but i ...
0
votes
0answers
15 views

Macro to remove a particular value(s) in cells A2 through A1000

Help!!! Need a macro that will delete rows based on the value that is found in Cells A2:A1000. The value with either be East, West or Central. I have used numerous codes that I have found on this ...
1
vote
3answers
55 views

Custom Excel script to update xls with 1800 lines

I have a few .xls spreadsheets here, each with about 1800 rows in each, all filled with product info from my amazon shops. I am needing to update the prices on every single product in their ...
-4
votes
1answer
71 views

Import values to xls from text file [closed]

I have a text file containing some values and i need to populate these values to xls. How could i do that using macros. Suppose i have a text file as mentioned below: Filename - data.txt Records ...
0
votes
0answers
7 views

Connection string for a macro to fetch data from csv file from one server to excel file on another server

Connection string for a macro to fetch data from csv file from one server to excel file on another server.Please share the code for connection string and macro code as well.
0
votes
1answer
29 views

Macro code: To fetch data from CSV file to excel file

I want to create a macro for excel,2007. To fetch data from csv file to excel file. Please share the code with me to run this macro.please reply :)
0
votes
0answers
131 views

DataSet fill with xls(Excel) file with value split

I am using the below c# code to fill the DataSet with xls(Excel) file. var fileName = "E:\\Static_Hotel_Dump final.xls"; SqlConnection con = new SqlConnection("MyConnection"); con.Open(); ...
0
votes
1answer
66 views

MS Access Export to .xls

I am looking for sample "source code" to do this so I can create a button to automatically export all tables to spread sheets with the same name but with a .xls extension. I already know how to export ...

1 2 3 4 5 12