+ Reply to Thread
Results 1 to 5 of 5

Excel 2007 VBA code to update linked-tables in Access 2003

Hybrid View

  1. #1
    Registered User
    Join Date
    02-12-2010
    Location
    Chicago, IL, USA
    MS-Off Ver
    Excel 2007, 2013
    Posts
    3

    Excel 2007 VBA code to update linked-tables in Access 2003

    Hey all. Long time reader, first time poster.

    My question:
    Using VBA: From Excel 2007, I need to update a linked-table within Access 2003 for both the filename of the data it is linked to, and the path it is linking through.

    My setup so far:
    1) In Access, I started by manually linking my data. (data is: InvSpend.tab)
    2) I created a module with a function to update the path based on where the DB was stored in case it was moved around. (the initial ask on this project)
    Formula: copy to clipboard
    Public Function updateLink() As String
    Dim tempStr As String

    Set db = CurrentDb
    Set tdf = db.TableDefs("InvSpend")

    tempStr = "Text;DSN=InvSpend Link Specification1;FMT=Delimited;HDR=NO;IMEX=2;CharacterSet=437;DATABASE=" & CurrentProject.Path

    tdf.Connect = tempStr
    tdf.RefreshLink

    End Function

    3) I created a macro in Access to run this code. (called it "updateLink")
    4) In Excel, I successfully ran the macro in Access with the following code:
    Formula: copy to clipboard
    Set accessObj = CreateObject("Access.Application")
    accessObj.Visible = False
    accessObj.OpenCurrentDatabase (dbPath)
    accessObj.DoCmd.RunMacro "updateLink"
    accessObj.CloseCurrentDatabase
    accessObj.Quit
    Set accessObj = Nothing


    My issue:
    The filename and location of the linked-table in Access will change periodically. I need to find a way to either pass variables from Excel to the Access function, or have Access read cells within Excel to make that update. (preferrably the former choice). Also to note: The file will not be in the same directory as the database, and will still be accessed over the network. (CurrentProject.Path won't work). I have seen some code online to pass parameters to queries, but none to a macro or module-function to update a linked-table.

    Apologies for the verbose post, I hope I have outlined my progress and where I've gotten stuck. Any help or alternate methods appreciated.

    Best,
    Armen

  2. #2
    Forum Contributor
    Join Date
    05-10-2012
    Location
    Paris, France
    MS-Off Ver
    2016/365
    Posts
    123

    Lightbulb Re: Excel 2007 VBA code to update linked-tables in Access 2003

    Hi armensng

    Why run macro in Access, why not in Excel

    I don't have file to test, but try this in Excel only
    Sub UpdateLink()
      Dim fd As FileDialog
      Dim sFilePath As String, DbPath As String, Tdf As Object
      Dim AccessObj As Object, Db As Object
      Dim tempStr As String
      
      ' Select file we want to use
      Set fd = Application.FileDialog(msoFileDialogFilePicker)
      With fd
        If .Show = -1 Then sFilePath = .SelectedItems Else Exit Sub
      End With
      Set fd = Nothing
    
      ' Access base
      DbPath = "C:\Mybase.mdb"
      ' Create instance of Access
      Set AccessObj = CreateObject("Access.Application")
      AccessObj.Visible = False
      ' Open database
      Set Db = AccessObj.OpenCurrentDatabase(DbPath)
      '
      Set Tdf = Db.TableDefs("InvSpend")
      tempStr = "Text;DSN=InvSpend Link Specification1;FMT=Delimited;HDR=NO;IMEX=2;CharacterSet=437;DATABASE=" & sFilePath
      Tdf.Connect = tempStr
      Tdf.RefreshLink
    
      AccessObj.CloseCurrentDatabase
      AccessObj.Quit
      Set AccessObj = Nothing
      
    End Sub

  3. #3
    Registered User
    Join Date
    02-12-2010
    Location
    Chicago, IL, USA
    MS-Off Ver
    Excel 2007, 2013
    Posts
    3

    Re: Excel 2007 VBA code to update linked-tables in Access 2003

    BrianM45: This is a valid point. lol. I had tried to run the code from Excel, but wasn't getting anywhere. I've adapted your code to fit my specific file.

    However, I am getting an error on the following line with "Run-time error 424: Object Required".
    Set Db = AccessObj.OpenCurrentDatabase(DbPath)

    I can run without the Set command with no issue, but that prevents me from running the rest of the code:
    AccessObj.OpenCurrentDatabase (DbPath)

    Thanks again for your help.
    Armen

  4. #4
    Forum Contributor
    Join Date
    05-10-2012
    Location
    Paris, France
    MS-Off Ver
    2016/365
    Posts
    123

    Re: Excel 2007 VBA code to update linked-tables in Access 2003

    Hi,

    Have you changed the path and name of variable DbPath ?
    DbPath = "C:\Mybase.mdb"
    It's an example

    A+

  5. #5
    Registered User
    Join Date
    02-12-2010
    Location
    Chicago, IL, USA
    MS-Off Ver
    Excel 2007, 2013
    Posts
    3

    Re: Excel 2007 VBA code to update linked-tables in Access 2003

    Yup, the code has been updated for that. As mentioned, running the 2nd code does open the same DB, but trying to Set it as an object ("Db") seems to be the issue. I was double-checking by triggering a msgbox from access.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Cells Linked Between Two Excel 2007 Workbooks Don't Automatically Update
    By zkeith in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 06-25-2013, 12:43 AM
  2. Replies: 0
    Last Post: 02-08-2013, 07:31 PM
  3. linked Excel 2007 WS to Access 2007
    By Squevil in forum Access Tables & Databases
    Replies: 1
    Last Post: 11-15-2011, 01:34 PM
  4. Update Access Linked Tables ODBC to SQL Server 2008
    By RxMiller in forum Access Tables & Databases
    Replies: 2
    Last Post: 12-22-2009, 12:42 PM
  5. Excel to Access linked tables
    By Keith in forum Excel General
    Replies: 0
    Last Post: 12-14-2005, 06:40 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