Export record to Excel Sheet |
| |
|
|
|
New Poster Posts: 14 Topics: 9
|
|
|
March 06, 2008, 04:48:17 AM
|
Hey All, I have query. Can we export the recordset values to some Excel Sheet. I have some users data, collected in ADO Recordset Object and I want to export it to Excel Sheet. Can we perform this action in ASP? Help needed! Thanks in Advance 
|
|
| |
|
|
|
Regular Coder Posts: 50 Topics: 15
|
|
|
September 11, 2008, 01:26:05 AM
|
|
Hey man that is really easily job........... Its all Graphical based and there isnt much............ You Could just use MS Acess where there is a direct option for doing such tasks.....
|
|
| |
|
|
|
New Coder Posts: 49 Topics: 14
|
|
|
September 16, 2008, 03:54:09 AM
|
Hi, Yes we can transfer the Data from recordset to Excell. it depends on the version of excell you are automating.you can create an array from the recordset and then populate a range with the contents of that array. Please go through the below link for details http://support.microsoft.com/kb/246335Let me know if this help you
|
|
| |
|
|
|
Regular Coder Posts: 50 Topics: 19
|
|
|
June 20, 2010, 09:37:37 PM
|
|
You might need several attempts - Copy the CSV file, in case you messed it up - Open the CSV file in NotePad (Open NotePad, drag the file to it. ) - Do "Save As", now what is the suggested format of the file? - I recommend importing the file in Excel instead of open it - In both cases, use the same format used in Notepad
I faced issues like that when I work with Arabic/Hebrew chars, and these steps usually work it out
If not, then pay attention to the format when you export the data from the database, most database applications give you the ability to choose the format when export =============== Proofreading | SEO Copywriting
|
|
| |
|
|
|
New Coder Posts: 44 Topics: 0
|
|
|
March 28, 2011, 09:48:50 PM
|
|
Why do you want to export it on excel sheet?
« Last Edit: April 10, 2011, 09:47:49 PM by Admin »
|
|
| |
|
|
|
Skilled Coder Real name: Janne
Location: california
Gender: 
Age: 26
Posts: 108 Topics: 1
|
|
|
April 29, 2011, 02:22:43 AM
|
|
you can use import facility of excelsheet . . u can easily export data or record to excel. . . . . . . . . . .
|
|
| |
|
|
|
Regular Coder Posts: 88 Topics: 10
|
|
|
August 03, 2011, 02:15:00 AM
|
|
f your goal is to store some or all data in one or more Excel worksheets in Access, you should import the contents of the worksheet into a new or existing Access database. When you import data, Access creates a copy of the data in a new or existing table, without altering the source Excel file.
Here are some common scenarios where you might want to import Excel data into Access:
You are a long-time user of Excel, and you are now thinking of moving to Access. You might start by importing your Excel worksheets into one or more new Access databases. You are a manager who receives reports in Excel format from your employees. You want to merge the reports with an existing database to update the contents of the database. You are a manager, and your employees send you weekly reports as Excel files. You want to automate the import operation, to save time. You are developing an application where you need to write code to import Excel data into Access.
|
|
| |
|
|
|
Regular Coder Posts: 73 Topics: 2
|
|
|
August 04, 2011, 09:50:11 PM
|
|
have a form that allows me to filter data for the user. I would like to be able to export that filtered data to Excel. I found a solution on here by vbaInet, but I don't think I'm writing the code correctly. Here is what I have:
strSQL = "SELECT * From [KSA_by_Media Query] WHERE ([ID]=" & Me![ID] & ");" DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, strSQL, pad & "Test.xls", True
Most likely the problem is that I have hardly any idea what any of that means, and I'm just copying. I've tried KSA_by_Media, which is a table rather than a query. I have also tried changing ID to the key field in my table. I also am unsure if these two lines are supposed to be combined as they are. Basically, I'm clueless, but I would appreciate any help.
Thanks
|
|
| |
|
FUE hair transplant in Pakistan Activity
|
|
New Coder Real name: Harry Martin
Location: Pakistan
Gender:  Posts: 26 Topics: 0
|
|
|
November 04, 2011, 11:10:51 PM
|
|
I agree with netshet and he suggested a nice way
|
|
| |