Results 1 to 19 of 19

Import Access Query To Excel

Threaded View

  1. #1
    Registered User
    Join Date
    10-25-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    13

    Import Access Query To Excel

    If someone could point me in the right direction I would really appreciate it. I am a very inexperienced Access and VBA user, and I am trying to import Access queries to an excel spreadsheet on a weekly basis. I have searched the web and there area a lot of examples out there that I have modified and tried myself, but with no luck. I am crrently using Access and Excel 2010. One of the issues I am running into is an "Unrecognized database format" as the database that I am currently pulling from has an .accdb format. I have run into a couple other error messages with other codes that I have modified for my use. I have to fill out this spreadsheet weekly and every bit of information is written in separate Access queries. The idea is to eventually have the queries autofill into their designated places in the spreadsheet. I have included the code that I currently have. Your help is greatly appreciated. Thanks





    Sub GetMyData()
    
    
         Const strDb As String = "C:\Users\dpk03\documents\DASH.accdb"
          Const strQry As String = "SELECT * from [Mill LBS Weekly]"
    
          Dim rs As ADODB.Recordset
          Dim cn As ADODB.Connection
    
          Set cn = New ADODB.Connection
          cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & strDb & ";"
         Set rs = New ADODB.Recordset
    
         With rs
             Set .ActiveConnection = cn
             .Open strQry
         End With
         Worksheets("Sheet2").Range("A2").CopyFromRecordset rs
    
         rs.Close: cn.Close
         Set rs = Nothing: Set cn = Nothing
     End Sub
    Last edited by alansidman; 10-25-2013 at 05:39 PM. Reason: code tags added

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Can I import the results of an Access Query into Excel?
    By MrChips in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-20-2012, 05:57 PM
  2. Data import Problem: Access Query to Excel
    By Minder in forum Access Tables & Databases
    Replies: 1
    Last Post: 05-25-2009, 04:23 PM
  3. Import Query in Access to Excel
    By lehainam in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-13-2008, 07:50 PM
  4. [SOLVED] Vlookup problem with Access Query import into Excel 2000
    By Neophyte in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 07-16-2006, 10:35 PM
  5. [SOLVED] access query to import to excel
    By jazzydwit in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 07-16-2006, 09:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1