Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
20answers
55k views

Import and Export Excel - What is the best library?

In one of our ASP.NET applications in C#, we take a certain data collection (SubSonic collection) and export it to Excel. We also want to import Excel files in a specific format. I'm looking for a ...
21
votes
12answers
29k views

Excel CSV - Number cell format

I produce a report as an CSV file. When I try to open the file in Excel, it makes an assumption about the data type based on the contents of the cell, and reformats it accordingly. For example, if ...
6
votes
1answer
278 views

Export Html Table to excel and keep css styles

I'm using excel web queries to export an html table (mvc view) to excel. How do I get it to carry across the css styles? If I set class="redLabel" it doesn't interpret that and make the label red. I ...
6
votes
2answers
841 views

export IEnumerable<T> to Excel

anybody knows how or some library to use for this ?
6
votes
6answers
5k views

How to Export data to Excel using LINQ to Entity?

I have the data coming from Entity Data model table on my ASP.NET page. Now I have to export this data into Excel on button click. If it is using OLEDB, it is straight forward as it is here: ...
4
votes
2answers
88 views

c# Error inserting to Excel when string data is more than 255 chars

I am trying to export some data to Excel. I am using OLEDB 12. The connectio string looks like: "Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='Excel 8.0;HDR=YES;'" And I ...
4
votes
3answers
4k views

How to Freeze Top Row and Apply Filter in Excel Automation with C#

I have automation to create an Excel document from C#. I am trying to freeze the top row of my worksheet and apply filter. This is the same as in Excel 2010 if you select View > Freeze Panes > Freeze ...
4
votes
6answers
11k views

How to export a datagrid to Excel file in Flex?

How do I export data in my datagrid to an Excel file in Flex? Can anyone provide some examples for that? I am browsing but couldn't find out a single example of that kind. EDIT Browsed a lot and ...
4
votes
2answers
644 views

Excel Automation: Open existing Excel file as “new”

I want to have a "one-click" excel export feature for my application. I therefore need to create an excel file in a temporary location, because I need to use a third-party component to do so. I want ...
4
votes
8answers
7k views

Exporting jsp tables to excel, word, pdf

Can anyone suggest me any library/jar files which I can use to export my table to excel/pdf/word. Please tell me if there is any library by which I can create reports in jsp.
4
votes
6answers
9k views

Format text in Excel file via PHP

I'm loading data from my database, and exporting to an Excel file via a method I found on this site: http://www.appservnetwork.com/modules.php?name=News&file=article&sid=8 It works, but what ...
3
votes
6answers
54 views

Export to Excel and PDF in PHP, Causing code redundancy

I need to create export to excel and export to pdf option for some of my mysql queries and provide it to the user. But also, the user needs to view the query results on my website too. So, in this ...
3
votes
3answers
224 views

how to put line break in excel sheet cell [closed]

I've so many rows in database table and i want it to be exported in excel sheet. My each row represent an individual sale, this sale may contain one or more product and if there is more than one ...
3
votes
3answers
1k views

How to convert gridview data to excel sheet in asp .net with C# lang

I want to covnvert GridView data to Excel sheet. I have written the code below, but it gives error: protected void Button1_Click(object sender, EventArgs e) { Response.Clear(); ...
3
votes
2answers
119 views

What supports Excel better ? ( VB.net or C#.net ?? )

I need to implement reporting.. with Excel sheets and need a lot of heavy excel workings.. So.. I have two options.. C#.net or VB.net !! What would be more closer to EXCEL ? What would provide me ...
3
votes
1answer
445 views

How to export the results of my query to csv file. Sqlite

I'm new to sqlite. Is there a way I can export the results of a query into a csv file? Thanks.
3
votes
2answers
190 views

how to generate excel chart from excel template

I have data in 10 columns in excel sheet I created an excel template with 2 columns (salary, average) and a graph generated by those 2 columns I need to take that Excel template as input and the out ...
3
votes
4answers
212 views

Forcing numeric values as text on HTML table exporting to excel

I'm trying to fix a bug at work where in classic ASP a HTML table is being rendered and then sent to the client as an Excel file. I'll spare the entire source code sample, but essentially we have one ...
3
votes
3answers
201 views

ColdFusion (9) mysteriously removes characters 'D' and 'F' after numbers when exporting to Microsoft Excel (2007)

Here's some code snippets for an example: theSheet = SpreadsheetNew("Rates","True"); SpreadsheetAddRow(theSheet,"4A,4B,4C,4D,4E,4F,4G,4H,4I,4J"); ...
3
votes
2answers
307 views

php Content-types

I'm playing around with exporting dynamic data from a database to the browser. I see there are different Content-Types, and some I need to ask about. I must be asking the wrong questions, since I'm ...
3
votes
3answers
599 views

Exporting hundreds of thousands of records with ColdFusion

Using ColdFusion 9.0.1, I need to export hundreds of thousands of database records to Excel XLSX or CSV (XLSX is preferred). This must be done on demand. So far I've tried using cfspreadsheet but it ...
3
votes
2answers
807 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
6answers
477 views

Can I import INTO excel from a data source without iteration?

Currently I have an application that takes information from a SQLite database and puts it to Excel. However, I'm having to take each DataRow, iterate through each item, and put each value into it's ...
3
votes
2answers
814 views

How to export SQL Server 2005 rows to excel? Everytime I do it I get errors

I have SQL Server 2005 and I am trying to export a table into an Excel file. I right click on my database and click export. I go through the wizard and choose to export to excel then I choose my one ...
3
votes
3answers
1k views

ColdFusion export to Excel

I'm have a hard time getting the account number to display correctly when exporting data from database to an Excel spreadsheet. Please see the attached image. Under Company Name column "Company ...
3
votes
3answers
527 views

Save Excel sheet into SQL

Excel has a Get External Data ribbon bar in the Data tab where we can choose to import tables from SQL databases. This process worked out nicely for me. But my question is, is there any way to save ...
3
votes
2answers
6k views

PHPExcel how to set cell value dynamically

How to set cell/column value dynamically using PHPExcel library? I am fetching result set from MySQL database and I want to write data in excel format using PHPExcel library. Looking at example ...
3
votes
3answers
5k views

Excel Range.BorderAround(), Border is always black

This is the code I am using: rngData.BorderAround(Excel.XlLineStyle.xlContinuous, Microsoft.Office.Interop.Excel.XlBorderWeight.xlThin, ...
3
votes
1answer
3k views

Export HTML Table to Excel

I have HTML table on the ASP.NET MVC View page. Now I have to export this table to Excel. (1) I have used partial view (Inquiries.ascx) to display the table data from database (using LINQ to Entity) ...
3
votes
1answer
2k views

Issues exporting an Excel file from Crystal Reports

I am having an issue exporting Crystal Reports into an excel file. I tried both options of exporting the Excel data AND exporting as an excel file. When i export my Crystal Report as an excel file, ...
3
votes
2answers
1k views

Generate an Excel XML document in Asp.net MVC Web Site

I have an ASP.Net MVC site that generates a Microsoft Excel 2003 XML formatted spreadsheet. The spreadsheet looks good, the controller and views both work, but the file won't open in Excel. It opens ...
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
8answers
579 views

C# and Excel files

I need to create a program that can read from/write to an Excel file. Should I use OleDB or use an Excel Object? What are the advantages of one over another, and where can I read up to get started on ...
3
votes
2answers
2k views

how to write in excel cells using DataReader if a particular cell is “ReadOnly” using C#

I am using DataReader to write data into excelsheet cells. I have no problem until the cell has write previleges. But in one case, only one cell is readonly and the rest cells are writable. Eg : 10 ...
3
votes
5answers
7k views

How to get named excel sheets while exporting from SSRS

Whenever a single page report is exported to excel, sheet in excel is named by the report name. If a report has multiple pages, the sheets are named as sheet1, sheet2,.... Is there any way to specify ...
2
votes
1answer
69 views

How to set the WrapText in the cells of Excel by PowerBuilder?

We now use PowerBuilder 11.5 to save a dataobject as an Excel file. One of the columns in the dataobject is the purchasing logs of the client in the recent years and each log should be showed in a ...
2
votes
2answers
393 views

Java: byte[] Array to Excel to BLOB

i have an byte[] array that needs to be converted into an valid excel spreadsheet. After converting the byte array, the excel spreadsheet must be chached into the database preferably as BLOB. ...
2
votes
2answers
424 views

Set paper size in Jasper to be recognized in Excel

I have an Excel report that I generate with Jasper 3.7.5. If I preview the file the last column of the report is not shown. If I change the paper size in Page Setup from Letter to A4 then the last ...
2
votes
2answers
253 views

How to generate an Excel file with Rails?

I was searching Ruby toolbox for a popular, well-supported tool to generate XSLX (Excel 2007 and on) document, but I didn't manage to find anything. I also spent a good amount of time searching on ...
2
votes
2answers
74 views

Reading Excel in .NET - some columns are read in as null

i am trying to read in some data from an excel: If (FileUpload1.PostedFile.ContentType = "application/vnd.ms-excel") Then Dim filename As String = ...
2
votes
3answers
242 views

Export to Excel tool for asp.net

Is there any tool that can export a dynamically generated html to excel in c sharp?
2
votes
2answers
222 views

Delphi - Add special character in Excel

I'm trying to insert a symbol - white square (Unicode 25A1) into Excel spreadsheet but keep getting errors: I tried following with no avail: 1. WorkSheet.Cells[CurrRow,CurrCol].Formula := ...
2
votes
3answers
162 views

populate excel workbook from a view

What is the best way to populate an excel workbook from a view? I want to design a textbox "StudentId" and a button "Show Grades" in a view. Once a student enters "StudentId" and clicks "Show ...
2
votes
1answer
302 views

Generating OpenXML Excel file doesn't apply date formatting

I'm trying to take data from a DataGridView and generate an Excel file with the contents. I have a problem with dates though. The problem is that, having written the worksheet, saved and opened it in ...
2
votes
1answer
647 views

Export to Excel, and change Sheet name

Here's the code I'm using: HttpContext.Current.Response.Clear(); HttpContext.Current.Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", "Single_Raw.xls")); ...
2
votes
2answers
584 views

How to set cell's dataType to Number using ExcelPackage lib?

My question is probably a stupid one, but I can't find solution on my own. I've run into a problem with (ExcelPackage). Is there any way to set cell's Excel data type ? And the cell.DataType property ...
2
votes
1answer
481 views

C# export to excel replace <br/> with a line break in a cell

I'm exporting data to excel. Is it possible to replace <br/> in a string with a line break (alt+enter) so that when exported to excel the string is displayed on separate lines in the same cell. ...
2
votes
5answers
802 views

Export data from dataset to excel

I am trying to export data from dataset to excel and save it directly to a given path without giving me the option to open,save or cancel.
2
votes
1answer
87 views

Values storable in Excel

Good evening! Which types of values can be directly stored into an Excel worksheet using Range.Value2 and how do I quickly check if a particular value can? Suppose I have an array of objects, ...
2
votes
1answer
351 views

Excel Export in MVC for IE not allowing to open multiple windows

Here is our ExcelExport action that inherits from ActionResult: public class ExcelResult<Model> : ActionResult { string _fileName; string _viewPath; Model _model; ...

1 2 3 4 5 10