Is a set of various techniques to write an MS-Excel sheet (or workbook) from various data sources (an SQL Query, a DataGrid, a DataGridView, a text file, etc).
0
votes
0answers
6 views
Error in file exporting (excel) Joomla 1.5
Im getting this error while exporting excel sheet through my joomla componenet .
The file you are trying to open "abc.xls" is in a different format than specified file extension. Verify that the ...
0
votes
0answers
7 views
Export data into different sheets in an excel spreadsheet using Pentaho Kettle
I want to export data from database tables into different sheets of an excel spreadsheet. For example, employee data from a database table into sheet1 of the spreadsheet, department data into sheet2 ...
0
votes
0answers
18 views
Error exporting Excel worksheets after upgrading to Apache POI 3.9
We are doing an changes in our application for converting the file extension from xls to xlsx format (2007 and above), while exporting the file from the application.
I have made necessary code ...
0
votes
0answers
10 views
SSIS OLEDB error when trying to export long unicode string to Excel destination
My Data Flow task in SSIS BIS 2008 contains a DB query source with a NVARCHAR column returning a constant string of 688 characters, which I am trying to insert into an Excel destination column when ...
0
votes
0answers
7 views
How to get download pop up when user clicks Export to Excel Button
I tried to export data from db to excel. It was working perfectly. But, the only thing is the excel sheet will be saved at specified location (C:/temp/dsrData.xls). I want the user to get a download ...
0
votes
1answer
17 views
How to resolve Dynamic LINQ ParseException: “Identifier Expected”
I am getting generic error message System.Linq.Dynamic.ParseException: Identifier expected.
What should I check in order to resolve it? The error isn't very detailed.
I did check the source and the ...
0
votes
0answers
11 views
#Error or #Value when exporting report from SSRS 2008
I have a report created in SSRS 2008 R2, which renders correctly, showing all values within report builder.
However, upon printing the report, the textboxes containing expressions change to ...
-4
votes
1answer
40 views
Export html table to excel that works in IE [closed]
I'm looking for a way to export a table to excel. I found some codes online but either some of them don't work on internet explorer and the ones that do work on IE requires me to change Active X ...
0
votes
0answers
8 views
left padding not assigned to excel cells
I am creating an excel report in jasper. which has records of group of employees in hierarchical order. I want each child row of the parent to be moved right side like right binary tree. For ...
1
vote
1answer
32 views
Excel worksheet change event is not firing
I have created excel workbook using .NET interop. The excel workbook is created successfully through my C# code. When the user makes any changes in the excel, I want to do some stuff. I have used the ...
0
votes
1answer
17 views
iOS export call logs to csv/excel or similar file in app
I know that I cannot read directly from the call_history.db, but I know that itunes can export the call logs onto a mac, and several other programs can do this to PC or osx.
Is there any sort of ...
0
votes
1answer
32 views
Download Excel file via AJAX MVC
I have a large(ish) form in MVC.
I need to be able to generate an excel file containing data from a subset of that form.
The tricky bit is that this shouldn't affect the rest of the form and so I ...
0
votes
1answer
24 views
DataFormatString not working with data grid
I have a format issue with data grid. I have applied the formatting property aDataColumn.DataFormatString = "{0:d}"
Private Function CreateColumnFromNode(ByVal aDisplayPropertyNode As XmlNode) As ...
0
votes
0answers
19 views
display:caption doesn't work for export in excel pdf
I' ve got this code in a jsp page
<display:table class="displayTag" sort="list" export="true" pagesize="20" name="requestScope.results" defaultsort="0" defaultorder="descending">
...
0
votes
1answer
22 views
Share Workbook getting checked on exporting excel from asp.net c#
How to uncheck "Allow changes by more than one user at the same time." in Share Workbook in excel while exporting the excel from c#
I am using "Microsoft.Office.Interop.Excel" for exporting the excel
...
0
votes
1answer
27 views
Export Multiple Query Results to Single Excel File
I ran a sp in SSMS and it gathers information from 50+ databases with the exact same structure. I am pulling results such as CustomerName, NumberOfUsers and VersionofCode. When I execute the ...
0
votes
1answer
37 views
Export to excel error in PHP reports [duplicate]
I export reports as excel using PHP & MySql. I can export and open the file from my localhost using my source code, but unable to do in the server. When I try to export it shows
"
Warning: ...
1
vote
2answers
89 views
export delphi stringgrid to excel
I'm trying to export data from a stringgrid in delphi 7 to microsoft excel. I have been using this code to do it:
objExcel := TExcelApplication.Create(nil);
objExcel.Visible[LOCALE_USER_DEFAULT] ...
0
votes
1answer
36 views
vba write numeric data as text into excel
I am writing data into an excel spreadsheet. The data comes from an Access Database. Code like the line below works:
xl.cells(5,5)="joe"
but code like the line below does not:
...
0
votes
2answers
45 views
Improving the performance of a DataTable to export a .CSV
The code I have is taking too long to export the .CVS, we are talking about several minutes. The query takes a few seconds to execute in SQL.
This is what I have right now to populate the DT:
...
0
votes
0answers
36 views
Microsoft Excel not Decoding the UTF-8 data automatically
I am facing an issue with respect to displaying ARABIC characters in an Excel/.csv which is created by my website.
We are in the process of internationalizing the website. In a particular page, we ...
0
votes
2answers
49 views
Changing column widths of excel when exporting data to Excel file [C#]
I wrote a exporting function so that all the data from my datagridview
gets exported into an Excel file when I click on a button.
Now this throws me one problem, I want to define the column widths of ...
0
votes
1answer
6 views
Extension not added on excel generation (APACHE POI)
I am generating an excel sheet using Apache POI in my spring mvc3 project. The file is generated without .xls extension. If I rename the same file with .xls manually the data is generated fine. Here ...
0
votes
1answer
44 views
Userdefined objects and ExcelIntegration
I am coding C# (Visual Studio Express 2012) and using ExcelIntegration. I want to let an ExcelFunction return a user defined object to a cell. And I further want an ExcelFunction take a userdefined ...
1
vote
1answer
37 views
Delimiting double quotes for replacing XML characters
I am using a template Excel Export class which I found on CodeProject here
and within the class there is a method for replacing certain characters to make them safe for Excel, however the following ...
0
votes
1answer
39 views
Output issues with PHPExcel
I have a web page where a user selects the amount of rows to be displayed followed by a button within a form that exports the data to excel.
<form method="post" action="">
<input ...
0
votes
1answer
43 views
Export data to Excel Part By Part
I have a huge dataset value in JRDatasource object and am not able to export it to Excel as it will give me memory out of space error. So am planning to split the JRDatasource object and export the ...
0
votes
1answer
66 views
Passing values from C# to VBA code?
I am pretty new to VBA, sorry if this is simple question or already answered... I tried by searching on MSDN but did not get any thing to implement this.
I am in need of sending a string (Host name ...
1
vote
0answers
38 views
Write OutputStream To Excel in chunks
I have a requirement where i need to generate reports of around millions of records and later export it to Excel. am using jasper reports for the purpose. Am able to preview the report. But when i try ...
0
votes
0answers
23 views
Export to xls file removing leading zeros
Each of the FixedLifeMaster and VariableLifeMaster fields are stored in my database as nvarchars and in the Entity Framework as a strings. However, when I export to an .xls file, Excel only sees ...
-1
votes
0answers
46 views
Export java to excel with popup window [closed]
I have a java bean code. This code has been successfully exported to an excel file, but I want a pop up window (Open, Save, Cancel) appears before download to hard drive. (I write this to give action ...
0
votes
0answers
38 views
KOGrid - Print option and Export to pdf and excel
I am looking for an option to export KnockoutContrib's KOGrid to excel and pdf.
For print I use JQuery's printElement. It takes html as input and prints it.
I am able to print it and also export to ...
0
votes
1answer
49 views
How can I export a DataTable to excel using OLEDB or ODBC adapter in c#?
Is it possible to export a DataTable object of .net to an excel sheet using an OLEDB or ODBC adapter?
If yes, how?
Selina
0
votes
0answers
23 views
inserting non-empty row in excel via vb.net
I want to insert data filled row into excel via my vb.net code, i dont get any error but the code is not working.
Here is the code:
Dim product As String = "hhh"
Dim reference As String = ...
-1
votes
0answers
52 views
Export a multidimensional array to CSV in javascript
I am trying to export a large array that looks something like this:
exportArray = [Array[3], Array[3], Array[3], Array[3], Array[3], Array[3], Array[3],
Array[3], Array[3], Array[3], ...
0
votes
0answers
45 views
How to add rows of data from matlab to existing excel spreadsheet (MATLAB)
I have an excel sheet 'myvalues.xlsx' cosisting of 200 rows 127 columns each. Is there any way to insert another set of 100 vectors to my excel sheet from matlab which will be placed in the 201th row ...
0
votes
1answer
436 views
Export data to Excel file with ASP.NET MVC 4 C# is rendering into view
I am having trouble exporting data to Excel. The following seems to render the gridview into my View, instead of prompting the user to open with Excel, which I have installed on my machine.
Public ...
1
vote
1answer
54 views
read xls file and re-export without lose initial data
I m using “spreadsheet”ruby gem to generate xls files.
I have already an xls file “MyFile.xls” which contains many sheets: sh_01, sh_02, sh_03 …
I want to read the name of the last sheet ...
0
votes
0answers
61 views
Export simpleGrid results to Excel
I'm currently using the simpleGrid plugin for Knockout to render data (List). Is there any way to export the rendered data to Excel (either .xslx or .csv format)? I haven't been able to figure out a ...
0
votes
3answers
82 views
How to go through an HTML table using PHP and get the data in each td?
I am trying to use the PHPExcel class to export reports into excel file. What I really need to do is to go thru every row in the HTML table then place it into cells in an excel file.
I think ...
0
votes
0answers
29 views
xml spreadsheet not change Format number using mvc
i use following xml file and open it in Excel
the view
@{
Layout = null;
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition", "attachment; ...
0
votes
1answer
77 views
Save an excel/cvs file from mysql using PHP [run via a cron job]
I have some results from a mysql table that I would like to export, I am currently able to click a download link and download an xls but I would like to be able to run this via a cron job and have the ...
0
votes
0answers
80 views
Issue Exporting Data to Excel file from Java Application
We have a requirement where we need to write the data to an excel file & download/export the file to the user's machine, however when i try to execute the logic(written in a servlet) a pop-up ...
1
vote
1answer
28 views
Mail merge displaying wrong numeric data
I am using Office 2003
On Access, I export values from a form into a .xls, after that using mail merge on word I import the data to be displayed on the file. Data such as dates and strings are ...
0
votes
0answers
34 views
Programmatically adding filters to OWC PivotTable
Using OWC PivotGrid, I am exporting data to ExcelPivot table. The code is as below:
using (AxPivotTable pivot = new AxPivotTable())
{
string connectionString = ...
0
votes
1answer
62 views
How can i merge binary excel cell created by C#?
i use this code to create one cell of excel via C#.
/// <summary>
/// Writes the text cell value.
/// </summary>
/// <param name="row">The row.</param>
/// <param ...
0
votes
2answers
39 views
Where can i find a good PHP class to export data from html or dataset to excel file with formating? [closed]
I am looking for an existing PHP class that export data to an excel file. I also need to ability to create the design so all the reports will look like the web version of the report.
Can some one ...
0
votes
0answers
33 views
How to dynamically export to excel model with all attributes?
I am exporting products table like in Railscasts tutorial.
How should I properly change view to render Product model with all attributes which I keep in hstore data column.
class Product < ...
1
vote
1answer
230 views
Export rdl report to a multiple sheets excel file problematically from c#
I've been searching online for a solution to this but so far no luck.
In the current application I'm developing, I have the need to export potentially large rdlc reports to excel files (among other ...
0
votes
1answer
104 views
Export Windows 8 Store data to excel file
I've written a Windows 8 Store application using XAML/C# and a SQLite database.
From within the application I need to create an Excel file and export the data from the SQLite Database. I have no idea ...





