A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Export multiple queries to a single Excel file



 
 
Thread Tools Display Modes
  #1  
Old October 10th, 2008, 07:58 PM posted to microsoft.public.access
kidkosmo
external usenet poster
 
Posts: 42
Default Export multiple queries to a single Excel file

I have multiple cross-tab queries that I'd like to output to a single
Excel file into separate tabs. Is this a possibility?
  #2  
Old October 10th, 2008, 08:59 PM posted to microsoft.public.access
Roger Carlson
external usenet poster
 
Posts: 824
Default Export multiple queries to a single Excel file

Absolutely. Just use the TransferText method to export your data. Specify
the same Excel file and each query will get exported to a separate tab.

You can do it in a macro or in VBA:
DoCmd.TransferSpreadsheet acExport, 8, "Query1", "C:\MySpreadsheet",
True, ""
DoCmd.TransferSpreadsheet acExport, 8, "Query2", "C:\MySpreadsheet",
True, ""
DoCmd.TransferSpreadsheet acExport, 8, "Query3", "C:\MySpreadsheet",
True, ""

--
--Roger Carlson
MS Access MVP
Access Database Samples: www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/...UBED1=ACCESS-L


"kidkosmo" wrote in message
...
I have multiple cross-tab queries that I'd like to output to a single
Excel file into separate tabs. Is this a possibility?



  #3  
Old October 10th, 2008, 10:43 PM posted to microsoft.public.access
zakrzewskiandrzejtkdami
external usenet poster
 
Posts: 1
Default Export multiple queries to a single Excel file


Uzytkownik "kidkosmo" napisal w wiadomosci
...
I have multiple cross-tab queries that I'd like to output to a single
Excel file into separate tabs. Is this a possibility?


  #4  
Old October 30th, 2008, 07:13 PM posted to microsoft.public.access
Sara
external usenet poster
 
Posts: 261
Default Export multiple queries to a single Excel file

I am trying to do the same thing, but when I have multiple rows, it'll only
do the first one.

I have 18 queries and I want them to dump their information into a single
spreadsheet. So far it will only do the first one and not the others.

"Roger Carlson" wrote:

Absolutely. Just use the TransferText method to export your data. Specify
the same Excel file and each query will get exported to a separate tab.

You can do it in a macro or in VBA:
DoCmd.TransferSpreadsheet acExport, 8, "Query1", "C:\MySpreadsheet",
True, ""
DoCmd.TransferSpreadsheet acExport, 8, "Query2", "C:\MySpreadsheet",
True, ""
DoCmd.TransferSpreadsheet acExport, 8, "Query3", "C:\MySpreadsheet",
True, ""

--
--Roger Carlson
MS Access MVP
Access Database Samples: www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/...UBED1=ACCESS-L


"kidkosmo" wrote in message
...
I have multiple cross-tab queries that I'd like to output to a single
Excel file into separate tabs. Is this a possibility?




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:05 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.