+ Reply to Thread
Results 1 to 8 of 8

Stop Update / Don't Update requestor message

Hybrid View

  1. #1
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Try this

    Workbooks.Open "Put Workbook path here inc the .xls", UpdateLinks:=1

    Your code has \ instead of /,
    Set TempWorkbook = Workbooks.Open(AssessmentPath & "/" & FileListStart.Offset(i, 0),UpdateLinks:=1 )
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  2. #2
    Forum Contributor
    Join Date
    11-13-2007
    Location
    Petersfield, Hampshire, UK
    MS-Off Ver
    MS Office for Mac ver 16
    Posts
    135
    RoyUK, thanks for your comments.

    Changing the \ to a / didn't make any difference to the way the code ran, but I still cannot make the code update remote and external references automatically by adding 3 to the end of the line. As soon as I do add the 3, the code does not compile.

    This is the start of the code I am trying to update to stop the appearance of the "Update - Don't Update" windows.

    Sub PopulateDataRisk(NumberOfLines As Integer, AssessmentPath As String, FileListStart As Range)
    
    Set RegisterWorkbook = ThisWorkbook
    
    For i = 0 To NumberOfLines - 1
    Set TempWorkbook = Workbooks.Open(AssessmentPath & "/" & FileListStart.Offset(i, 0))
    
    Dim DataArray(18)
    
    With TempWorkbook
        DataArray(0) = Range("LOF_Ref")
    Geoff Culbertson
    Petersfield, UK

  3. #3
    Forum Contributor
    Join Date
    11-13-2007
    Location
    Petersfield, Hampshire, UK
    MS-Off Ver
    MS Office for Mac ver 16
    Posts
    135
    I have sorted the problem out, by changing the line

    Set TempWorkbook = Workbooks.Open(AssessmentPath & "/" & FileListStart.Offset(i, 0))
    to

    Set TempWorkbook = Workbooks.Open(AssessmentPath & "/" & FileListStart.Offset(i, 0), 3)
    Thanks again to Cheeky Charlie for pointing me in the right direction.

    Regards

    Geoff

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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