+ Reply to Thread
Results 1 to 2 of 2

updating links in command

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-16-2006
    Posts
    349

    updating links in command

    Sub gg()
    
    'Clear Old Data on Sheets
    Run "Delete"
    
                'THIS IS THE MAIN CODE FOR SETTING UP THE ROTA
            
                'This is the variables set for the script (the month must be changed each month).
                    Dim i As Integer, wb As Workbook
                    With Application.FileSearch
                    .NewSearch
                    .LookIn = "P:\CET - gggement\ggr\December 2007\Sprreets\"
                    .SearchSubFolders = True
                    .Filename = "*.xls"
                    .Execute
                    For i = 1 To .FoundFiles.Count
    
                'Open each workbook
                   Set wb = Workbooks.Open(Filename:=.FoundFiles(i))
                
                    Run "Sourcing1"
                    Run "Gather"
                
                'Save and close the workbook
                
                    wb.Close savechanges:=True
                
                'On to the next workbook
                
                Next i
                End With
    
    'Format
    Run "Formatting"
    'Deartment Split
    Run "Splitter"
    Run "StatusBar"
    
    End Sub

    how do i get it not update the links when it opens the files , any help please

  2. #2
    Valued Forum Contributor
    Join Date
    11-15-2007
    Location
    England
    MS-Off Ver
    Office Pro Plus 2021
    Posts
    424
    Does this help?

    Sub OpenDontUpdate()
    Workbooks.Open FileNmae:= _
    "C:\My Documents\MyFile.xls", UpdateLinks:=xlUpdateLinksNever
    End Sub

+ 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