Link to home
Start Free TrialLog in
Avatar of Fordraiders
FordraidersFlag for United States of America

asked on

Export Multiple Queries to excel and append to one sheet

access 2003
excel 2003
vba function needed
workbook name :  C:\Program Files\MyWork\MyResults.xls
I have about 15 queries to append to a worksheet("ResultData")

All with various Names:
Export Status Codes
Export Red Codes
Export Resgualr Codes
etc..

But these names I could put in a text file
to loop through?

I need a VBA routine to append each query and its field headers to append to each other.


Thanks
fordraiders
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

are the queries returning different number of columns?


you can start with these codes


Dim db As DAO.Database, rs As DAO.Recordset
Dim i As Integer, j As Integer
Dim ssql As String, xlFile As String
Dim xlObj As Object
Dim Sheet As Object, rowCnt as integer

Set db = DBEngine.Workspaces(0).Databases(0)

Set xlObj = CreateObject("Excel.Application")
        xlObj.workbooks.Open ("C:\Program Files\MyWork\MyResults.xls")
        Set rs = db.OpenRecordset("Export Status Codes")
    
Set Sheet = xlObj.ActiveWorkbook.Sheets("ResultData")
xlObj.Visible = True
'copy the headers
Dim iRow, iCol
iRow = 1
    For iCol = 0 To rs.Fields.Count - 1
        Sheet.cells(iRow, iCol + 1).Value = rs.Fields(iCol).Name
    Next

Sheet.range("A2").CopyFromRecordset rs  'this copy just the data



'check how many rows where  populated
rowCnt=Sheet.usedrange.rows.count
 
 Set rs = db.OpenRecordset("Export Red Codes")

iRow = rowCnt + 1
 
    For iCol = 0 To rs.Fields.Count - 1
        Sheet.cells(iRow, iCol + 1).Value = rs.Fields(iCol).Name
    Next

Sheet.range("A" & iRow + 1).CopyFromRecordset rs  'this copy just the data

'and so on



rs.Close
Set Sheet = Nothing
Set xlObj = Nothing

Open in new window





* Note : you can place the names of the queries in an Array or in a table



* save the name of the queries in a table "tblQueries" with Field Name "QueryName"
 use this code

Dim db As DAO.Database, rs As DAO.Recordset, rsQ As DAO.Recordset
Dim strQry As String
Dim xlObj As Object
Dim Sheet As Object, rowCnt As Integer
Dim iRow, iCol

Set db = DBEngine.Workspaces(0).Databases(0)

Set xlObj = CreateObject("Excel.Application")
    xlObj.Workbooks.Open ("C:\Program Files\MyWork\MyResults.xls")
    
    Set Sheet = xlObj.ActiveWorkbook.Sheets("ResultData")
    rowCnt = 0
    
    
    Set rsQ = db.OpenRecordset("tblQueries")
    rsQ.MoveFirst
    
    Do Until rsQ.EOF
        iRow = rowCnt + 1
        strQry = rsQ!queryName
        
        Set rs = db.OpenRecordset(strQry)
 
 'copy the headers
        
            For iCol = 0 To rs.Fields.Count - 1
                Sheet.cells(iRow, iCol + 1).Value = rs.Fields(iCol).Name
            Next
  'this copy just the data
            Sheet.range("A" & iRow + 1).CopyFromRecordset rs

'check how many rows where  populated
            rowCnt = Sheet.usedrange.rows.Count
        
        rsQ.MoveNext
    Loop

'save the file
    xlObj.ActiveWorkbook.Save
    
rsQ.Close
rs.Close
Set Sheet = Nothing
xlObj.Quit
Set xlObj = Nothing

Open in new window





Avatar of Fordraiders

ASKER

no, its the same fields
you can use a union query then export the result, but i'll prefer using the vba codes posted at http:#a36500453


did you try it?
gonna try now...Thanks the second piece of code http:#a36500453
cap, Error here

Do Until rsQ.EOF
        iRow = rowCnt + 1
        strQry = rsQ!queryName
       
        Set rs = db.OpenRecordset(strQry)  <--- name not available  error 3265  Item not found in this collection.
         I have 4 querynames in the table  
but   strQry = ""
what is the name of the field in your table "tblQueries"
"UnsolicatedQueries"
can you upload a copy of the db  (.mdb version )
it has links to network tables..?
hold on a sec...
its 64mb zipped...but I could delete the data ?
open the tblQueries, copy the contents by selecting all of columns and fields and post it here..
did you do a compact and repair before zipping?

yes you can delete some the data, but not the records from tblQueries
ok.. I got your first bit of code to work fine...
here is the database...

testing-Prmdb025-chgo-Reporting-.zip
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks as always ! very much !
Great