+ Reply to Thread
Results 1 to 2 of 2

Disable Update Automatic Links

  1. #1
    Tim
    Guest

    Disable Update Automatic Links

    I have a user that receives orders on a spreadsheet via e-mail from a
    customer on a daily basis. This user doesn't use spreadsheets with external
    or internal links. How can I disable Excel from attempting to update
    automatic links for everything that it opens? I know I can do it for a
    individual workbook but I want it disabled for all worksheets on this
    particular users computer.

    I appreciate any help you can give me.
    --
    Tim Mehrley

  2. #2
    Jim Rech
    Guest

    Re: Disable Update Automatic Links

    >>How can I disable Excel from attempting to update automatic links for
    >>everything that it opens?


    You can't. The only workaround is to open workbooks via a macro. Then you
    can tell Excel not to update links (the False argument):

    Sub a()
    Dim WB As Variant
    WB = Application.GetOpenFilename("Excel files (*.xls),*.xls")
    If Not WB = False Then Workbooks.Open WB, False
    End Sub

    So you'd have to provide the user with a toolbar button that ran a macro
    like the above (which should to be in his Personal.xls). But if he insisted
    in opening file by double-clicking then this wouldn't work.

    --
    Jim
    "Tim" <mehrleyt@hotmail.com> wrote in message
    news:B5BFC583-BD77-42EC-A0F8-CA4E1D91ABA4@microsoft.com...
    |I have a user that receives orders on a spreadsheet via e-mail from a
    | customer on a daily basis. This user doesn't use spreadsheets with
    external
    | or internal links. How can I disable Excel from attempting to update
    | automatic links for everything that it opens? I know I can do it for a
    | individual workbook but I want it disabled for all worksheets on this
    | particular users computer.
    |
    | I appreciate any help you can give me.
    | --
    | Tim Mehrley



+ 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