Import more than 1 record set @ a time from Access

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
766
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon,

I have created some code to pull a query from Access to Excel which works, but I now want to pull more than 1 query through at a time. So when "Current Week" is selected in a drop down Excel should pull 4 queries into Excel. I am using the following code I have created, but get an error when I try to pull the second query in at "Uploads current week Inbound Calls" I am new at trying to pull data in, but IO have tried a couple of different variations with the same debug error. I am hoping to create 4 optional outcomes so the data can load specific to the criteria requested (current week, last week, last month etc....)

Rich (BB code):
Public cnn As ADODB.Connection
Public sQRY As String
Public strFilePath As String


Sub Import_CurrentWeek()


strFilePath = "\\Source file"


Set cnn = New ADODB.Connection
Set rs = New ADODB.Recordset
'Uploads current week Process Worked
cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;" & _
"Data Source=" & strFilePath & ";"
sQRY = "SELECT * FROM CurrentWeekPW"


rs.CursorLocation = adUseClient
rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly


Sheet4.Visible = True 'Import
Sheet4.Range("A2").CopyFromRecordset rs
Sheet4.Visible = xlVeryHidden

rs.Close
Set rs = Nothing
cnn.Close
Set cnn = Nothing



'Uploads current week Inbound Calls
cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;" & _
"Data Source=" & strFilePath & ";"
sQRY = "SELECT * FROM CurrentWeekIC"


rs.CursorLocation = adUseClient
rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly


Sheet8.Visible = True 'Import
Sheet8.Range("A2").CopyFromRecordset rs
Sheet8.Visible = xlVeryHidden


rs.Close
Set rs = Nothing
cnn.Close
Set cnn = Nothing


Sheets("Welcome").Select


Exit Sub
End Sub

thanks in advance
Gavin
 
Last edited:

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
No need to close the connection until you've finished with it.
Code:
Public cnn As ADODB.Connection
Public sQRY As String
Public strFilePath As String


Sub Import_CurrentWeek()

    strFilePath = "\\Source file"

    Set cnn = New ADODB.Connection
    Set rs = New ADODB.Recordset
    'Uploads current week Process Worked
    cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;" & _
             "Data Source=" & strFilePath & ";"
    sQRY = "SELECT * FROM CurrentWeekPW"


    rs.CursorLocation = adUseClient
    rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly

    Sheet4.Visible = True    'Import
    Sheet4.Range("A2").CopyFromRecordset rs
    Sheet4.Visible = xlVeryHidden

    rs.Close
    Set rs = Nothing

    sQRY = "SELECT * FROM CurrentWeekIC"

    rs.CursorLocation = adUseClient
    rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly

    Sheet8.Visible = True    'Import
    Sheet8.Range("A2").CopyFromRecordset rs
    Sheet8.Visible = xlVeryHidden

    rs.Close
    Set rs = Nothing
    cnn.Close
    Set cnn = Nothing

    Sheets("Welcome").Select

End Sub
 
Upvote 0
No need to close the connection until you've finished with it.
Code:
Public cnn As ADODB.Connection
Public sQRY As String
Public strFilePath As String


Sub Import_CurrentWeek()

    strFilePath = "\\Source file"

    Set cnn = New ADODB.Connection
    Set rs = New ADODB.Recordset
    'Uploads current week Process Worked
    cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;" & _
             "Data Source=" & strFilePath & ";"
    sQRY = "SELECT * FROM CurrentWeekPW"


    rs.CursorLocation = adUseClient
    rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly

    Sheet4.Visible = True    'Import
    Sheet4.Range("A2").CopyFromRecordset rs
    Sheet4.Visible = xlVeryHidden

    rs.Close
    Set rs = Nothing

    sQRY = "SELECT * FROM CurrentWeekIC"

    rs.CursorLocation = adUseClient
    rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly

    Sheet8.Visible = True    'Import
    Sheet8.Range("A2").CopyFromRecordset rs
    Sheet8.Visible = xlVeryHidden

    rs.Close
    Set rs = Nothing
    cnn.Close
    Set cnn = Nothing

    Sheets("Welcome").Select

End Sub

Thank you for the amendments, but I am getting a debug error on the second query "Object Variable or with block variable not set" on the second
Code:
rs.CursorLocation = adUseClient
rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly

what is it I am missing?

Thanks
Gavin
 
Upvote 0
Remove this line:

Code:
Set rs = Nothing

after the first rs.Close line.
 
Upvote 0

Forum statistics

Threads
1,214,416
Messages
6,119,386
Members
448,891
Latest member
tpierce

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top