472,805 Members | 894 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,805 software developers and data experts.

Export search results from Form to CSV (macro)

I have a search form that returns records to another form, rather than a table. Here are my questions:

1) Is it possible to export the form results (as opposed to query results) to CSV? I've been successful at exporting a table of results before, but not a form.

2) If so, can this be done via macro?

3) If a macro is possible, can the macro further allow the user to choose location and filename when exporting?

I've tried a straightforward approach of pointing the macro to the form, but it appears that the macro only wants a table or query. My guess is that I will have to build a further query 'behind the scenes' in order to export...

Thanks,

-Scott
Feb 18 '07 #1
13 6168
ADezii
8,834 Expert 8TB
I have a search form that returns records to another form, rather than a table. Here are my questions:

1) Is it possible to export the form results (as opposed to query results) to CSV? I've been successful at exporting a table of results before, but not a form.

2) If so, can this be done via macro?

3) If a macro is possible, can the macro further allow the user to choose location and filename when exporting?

I've tried a straightforward approach of pointing the macro to the form, but it appears that the macro only wants a table or query. My guess is that I will have to build a further query 'behind the scenes' in order to export...

Thanks,

-Scott
1. Form results cannot be transfered to a CSV File. In order to Export data to a CSV File, you use the TransferText() Method and this Method requires either a Table or Query Argument, not an SQL Statement. You must first create a query and then specify the name of the query in the Table Name argument. All is not lost however, because if your Form results are generated by changing the RecordSource of the Form, you can programmatically create the CSV File by the following code which creates a Recordset based on the Form's RecordSource and writes selected Fields in a CSV Format to CSV.txt in the Test Directory. Field names are my own for testing purposes.
Expand|Select|Wrap|Line Numbers
  1. Dim MySQL As String, MyDB As Database, MyRS As Recordset
  2.  
  3. MySQL = Me.RecordSource
  4.  
  5. Open "C:\Test\CSV.txt" For Output As #1
  6.  
  7. Set MyDB = CurrentDb()
  8. Set MyRS = MyDB.OpenRecordset(MySQL, dbOpenDynaset)
  9.   Do While Not MyRS.EOF
  10.     Write #1, MyRS![EmployeeID], MyRS![FirstName], MyRS![LastName]
  11.     MyRS.MoveNext
  12.   Loop
  13. MsgBox MyRS.RecordCount
  14.  
  15. Close #1
  16. MyRS.Close
If you are further interested, please let me know. I'm sure the other Experts/ Moderators will come up with other solutions, probably better. Good Luck!
Feb 19 '07 #2
MMcCarthy
14,534 Expert Mod 8TB
Actually, that is an excellent solution, one variation I would try (borrowing ADezii's code) is ...

Expand|Select|Wrap|Line Numbers
  1. Dim MyRS As Recordset
  2.  
  3. Open "C:\Test\CSV.txt" For Output As #1
  4.  
  5. Set MyRS = Me.RecordsetClone
  6. MyRS.MoveFirst
  7. Do While Not MyRS.EOF
  8.     Write #1, MyRS![EmployeeID], MyRS![FirstName], MyRS![LastName]
  9.     MyRS.MoveNext
  10.   Loop
  11. MsgBox MyRS.RecordCount
  12.  
  13. Close #1
  14. MyRS.Close
I'm not sure if RecordsetClone will return the filtered records but I think it will.

Mary
Feb 19 '07 #3
ADezii
8,834 Expert 8TB
Actually, that is an excellent solution, one variation I would try (borrowing ADezii's code) is ...

Expand|Select|Wrap|Line Numbers
  1. MyRS As Recordset
  2.  
  3. Open "C:\Test\CSV.txt" For Output As #1
  4.  
  5. Set MyRS = Me.RecordsetClone
  6. MyRS.MoveFirst
  7. Do While Not MyRS.EOF
  8.     Write #1, MyRS![EmployeeID], MyRS![FirstName], MyRS![LastName]
  9.     MyRS.MoveNext
  10.   Loop
  11. MsgBox MyRS.RecordCount
  12.  
  13. Close #1
  14. MyRS.Close
I'm not sure if RecordsetClone will return the filtered records but I think it will.

Mary
You were right on with the RecordsetClone approach, thanks. No sense playing around with the original, when you can use a copy!
Feb 19 '07 #4
MMcCarthy
14,534 Expert Mod 8TB
You were right on with the RecordsetClone approach, thanks. No sense playing around with the original, when you can use a copy!
LOL - My thoughts exactly.
Feb 19 '07 #5
Trying Mary's mods, I am getting an error: File Already Open. The code is attached to a button on the results form.

I've checked to see if the CSV file actually is open, but it ain't. This happens even after closing and reopening the db. I've also tried changing the location and just deleting the file, but that results in an Object Required notice as expected.

I also have a problem with the As Database declaration throwing another error about invalid user-defined type. Commenting it out yields the above results. Did I misunderstand how to declare that variable?
Feb 19 '07 #6
MMcCarthy
14,534 Expert Mod 8TB
Trying Mary's mods, I am getting an error: File Already Open. The code is attached to a button on the results form.

I've checked to see if the CSV file actually is open, but it ain't. This happens even after closing and reopening the db. I've also tried changing the location and just deleting the file, but that results in an Object Required notice as expected.

I also have a problem with the As Database declaration throwing another error about invalid user-defined type. Commenting it out yields the above results. Did I misunderstand how to declare that variable?
It's not included in my mods

try adding this line of code to the beginning of the code before the 'Open' statement.

Expand|Select|Wrap|Line Numbers
  1. Close #1
Feb 19 '07 #7
Sorry Mary - my response implied incorrectly that it was part of your example. I discovered it wasn't appropriate to the code, so have since removed it.

I've also tried using Close in the beginning of the code, but that now gives a Type Mismatch error. I guess that means there's something wrong with the variable declaration, but I don't see how using RecordsetClone would violate strict typing. Here's my current code:

Expand|Select|Wrap|Line Numbers
  1. Private Sub cmdPrintToCSV_Click()
  2. On Error GoTo Err_cmdPrintToCSV_Click
  3.  
  4. Dim MyRS As Recordset
  5.  
  6. Close #1
  7.  
  8. Open "e:\Documents and Settings\profile\Desktop\CSV.txt" For Output As #1
  9.  
  10. Set MyRS = Me.RecordsetClone
  11. MyRS.MoveFirst
  12.   Do While Not MyRS.EOF
  13.     Write #1, MyRS![cardTitle]
  14.     MyRS.MoveNext
  15.   Loop
  16. MsgBox MyRS.RecordCount
  17.  
  18. Close #1
  19. MyRS.Close
  20.  
  21. Exit_cmdPrintToCSV_Click:
  22.     Exit Sub
  23.  
  24. Err_cmdPrintToCSV_Click:
  25.     MsgBox Err.Description
  26.     Resume Exit_cmdPrintToCSV_Click
  27.  
  28. End Sub
  29.  
Note that I am currently only trying to record one element from the form, [cardTitle]. Eventually, there will be about 10 elements.
Feb 19 '07 #8
MMcCarthy
14,534 Expert Mod 8TB
Sorry Mary - my response implied incorrectly that it was part of your example. I discovered it wasn't appropriate to the code, so have since removed it.

I've also tried using Close in the beginning of the code, but that now gives a Type Mismatch error. I guess that means there's something wrong with the variable declaration, but I don't see how using RecordsetClone would violate strict typing. Here's my current code:

Expand|Select|Wrap|Line Numbers
  1. Private Sub cmdPrintToCSV_Click()
  2. On Error GoTo Err_cmdPrintToCSV_Click
  3.  
  4. Dim MyRS As Recordset
  5.  
  6. Close #1
  7.  
  8. Open "e:\Documents and Settings\profile\Desktop\CSV.txt" For Output As #1
  9.  
  10. Set MyRS = Me.RecordsetClone
  11. MyRS.MoveFirst
  12.   Do While Not MyRS.EOF
  13.     Write #1, MyRS![cardTitle]
  14.     MyRS.MoveNext
  15.   Loop
  16. MsgBox MyRS.RecordCount
  17.  
  18. Close #1
  19. MyRS.Close
  20.  
  21. Exit_cmdPrintToCSV_Click:
  22.     Exit Sub
  23.  
  24. Err_cmdPrintToCSV_Click:
  25.     MsgBox Err.Description
  26.     Resume Exit_cmdPrintToCSV_Click
  27.  
  28. End Sub
  29.  
Note that I am currently only trying to record one element from the form, [cardTitle]. Eventually, there will be about 10 elements.
The code is fine. At a guess I would say you have no DAO library ticked. In the VBA Editor window go to Tools - References and make sure there is a Microsoft DAO Library ticked on the list.

Mary
Feb 19 '07 #9
Thanks again, Mary, but still getting the type mismatch error. I did not have a DAO reference, so I tried each of the 3 available in turn. None gave me a different result. In desperation, I closed everything and recompiled, but of course that did nothing.

Could the error have something to do with my form or tables? Or is it most likely something in the VBA script?
Feb 19 '07 #10
MMcCarthy
14,534 Expert Mod 8TB
Thanks again, Mary, but still getting the type mismatch error. I did not have a DAO reference, so I tried each of the 3 available in turn. None gave me a different result. In desperation, I closed everything and recompiled, but of course that did nothing.

Could the error have something to do with my form or tables? Or is it most likely something in the VBA script?
Tick the DAO reference with the highest version number and then use the up arrow to move it to the highest point on the list it will go. This will probably be around position 3. Then try again ...

Mary
Feb 19 '07 #11
ADezii
8,834 Expert 8TB
Thanks again, Mary, but still getting the type mismatch error. I did not have a DAO reference, so I tried each of the 3 available in turn. None gave me a different result. In desperation, I closed everything and recompiled, but of course that did nothing.

Could the error have something to do with my form or tables? Or is it most likely something in the VBA script?
You may have References set to both DAO and ADO Libraries. In that case you may to to explicitly Declare the Object Variables as in:
Expand|Select|Wrap|Line Numbers
  1. Dim MyDB As DAO.Database, MyRS As DAO.Recordset
Feb 20 '07 #12
Hmm... that worked on my desktop, but not on my laptop. Both are running the same install, afaik.

No biggie. As long as one of them works, I can get what I need.

I've changed from Write # to Print # to get tab-delimited instead. Other than that, I think this part is good to go!

Thanks very much =)

**edit**

I hadn't seen ADezii's post when I wrote this. I'll try the explicit declarations on my laptop in a bit. Again, I really appreciate the help.
Feb 20 '07 #13
MMcCarthy
14,534 Expert Mod 8TB
Hmm... that worked on my desktop, but not on my laptop. Both are running the same install, afaik.

No biggie. As long as one of them works, I can get what I need.

I've changed from Write # to Print # to get tab-delimited instead. Other than that, I think this part is good to go!

Thanks very much =)
You're welcome.

BTW, did you catch ADezii's post as you both posted very close together. It might solve the laptop issue.

Mary
Feb 20 '07 #14

Sign in to post your reply or Sign up for a free account.

Similar topics

5
by: Tim Eliot | last post by:
Just wondering if anyone has hit the following issue and how you might have sorted it out. I am using the command: DoCmd.TransferText acExportMerge, , stDataSource, stFileName, True after...
0
by: Makuhari1998 | last post by:
Is it possible to create a macro that will open 7 reports at once and automatically export the results of each report into Excel? Can the results be exported into the same Excel workbook, or will...
7
by: Jean | last post by:
Hello, I have a form that performs a search, according to criteria that a user enters into the text boxes. When the user clicks on „Search", a SQL string (say strSQL) is built up with the...
8
by: Steph | last post by:
Hi. I'm very new to MS Access and have been presented with an Access database of contacts by my employer. I am trying to redesign the main form of the database so that a button entitled...
11
by: Not Me | last post by:
Hi, I'm trying to export from a gridview control, to an excel file using code intended for a datagrid control (it's all over the web, can post if requested) I get the error. Control...
9
by: cassey14 | last post by:
Hi everyone! I really need your help.. I have a search form..And in that search form I have a subform..When they search, the results will display in the subform..I want to export to excel the...
3
by: robertoathome | last post by:
Hello, I successully adapted a search form from a microsoft example into my own db. MS Example I type search parameters in 2 boxes and the results are returned in a new, basic query window. ...
2
by: Marisol2 | last post by:
I have some queries in Access 2003 db that I have setup to display as pivots. I can go into design pivot table view and click on and then click on Export to Office MicroSoft Excel. The problem is I...
7
ollyb303
by: ollyb303 | last post by:
Hi, I am having a bit of a problem with TransferText macro. I am using TransferText, Export Delimited (no field names) to export the results of a query as a .csv file. The query is based on...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
0
by: lllomh | last post by:
How does React native implement an English player?
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.