Results 1 to 2 of 2

VBA SET Command to Open Workbook is Generating Errors

Threaded View

  1. #1
    Registered User
    Join Date
    10-24-2012
    Location
    Jacksonville, Florida
    MS-Off Ver
    Excel 2003
    Posts
    4

    VBA SET Command to Open Workbook is Generating Errors

    Hi all, hoping someone can help with this:
    Using the Set command (xl2003) to open a Shared Workbook, (or re-open if already in use, as it usually is, being a Shared file and all), to grab some data for my project. The code shown below works fine, [both WITH and WITHOUT the shared file already being opened in my session, ...however, when other users run the same code, it errors out, complaining that the file is already open, and that you can not have (2) instances of the same file open at the same name.
    With DisplayAlerts being False, the warning about re-opening a file already open should be overridden, and the file should close, and re-open without issue, as it does on my machine. (Users in question have same admin privileges to the directory as I do).
    Anyway, I am stumped, here's the section of code giving me grief. Note: it is the "Set dbWB3 = Workbooks.Open(dbFPath2 & "\" & dbFName2)" line that it errors on. If anything jumps out, please advise!
    Sub DOWNsyncDBs()
        On Error GoTo SyncErrorDBs:
        Application.ScreenUpdating = False
        Application.DisplayAlerts = False
        
        dbFName = "xDATABASE.xls"                                    
        dbFPath = "D:\DATA\!!DMK\xDATA_STORAGE\DRIVER MANAGEMENT"     
        dbFName2 = "DMK Load & Capacity Boards.xls"                  
        dbFPath2 = "D:\DATA\!!DMK\GROUP"                             
    
        Set dbWB1 = ActiveWorkbook
        Set dbWS1 = dbWB1.Sheets("Active Loads")                      
        Set dbWS3 = dbWB1.Sheets("Driver DB")                        
        
        Set dbWB2 = Workbooks.Open(dbFPath & "\" & dbFName)           
        Set dbWS4 = dbWB2.Sheets("Driver Database")     
        Set dbWB3 = Workbooks.Open(dbFPath2 & "\" & dbFName2)         
        Set dbWS2 = dbWB3.Sheets("Available Loads")                   
        
        dbWS1.Range("pdbLOADS") = dbWS2.Range("aLOADS").Value        
        dbWS4.Range("aDATABASE").Copy Destination:=dbWS3.Range("pdbDATABASE")
        dbWS4.Activate
        ActiveWorkbook.Close
        ThisWorkbook.Activate
        Application.ScreenUpdating = True
        Application.DisplayAlerts = True
    Exit Sub
    SyncErrorDBs:
        ThisWorkbook.Activate
        Application.ScreenUpdating = True
        Application.DisplayAlerts = True
    MsgBox "Please report mini-sub: SyncErrorDBs has been called"
    End Sub
    Last edited by stevelogistics; 03-06-2013 at 09:19 AM. Reason: Found Solution

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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