WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Automatic_updates_of_links_betwe

 
   Home -> Office -> Links RSS
Next:  Mac v. X Excel's formatting palette opens off des..  
Author Message
Mary Ann

External


Since: Mar 04, 2006
Posts: 70



(Msg. 1) Posted: Sun Oct 05, 2008 10:40 am
Post subject: Automatic_updates_of_links_betwe
Archived from groups: microsoft>public>excel>links (more info?)

When I open a file with links to another file, a security warning shows in
the message bar showing that automatic update of links has been disabled.
When I go to the Trust Centre it shows that Prompt User on Automatic Update
of Links is selected.
Microsoft help seems to imply that if I don’t want to update, I should get a
button Don’t Update. However this button does not appear. Nor does an update
button.
When I open the file I want to be able to choose whether to update or not.
What is the process to set this up and then how do I give the two
instructions, Update or Don’t Update?
Back to top
Login to vote
Bill Manville

External


Since: Jul 30, 2004
Posts: 669



(Msg. 2) Posted: Mon Oct 06, 2008 9:05 am
Post subject: Re: Automatic_updates_of_links_betwe [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Excel 2007 makes the control of link updating harder, in my opinion;
certainly confusing!

As far as I can tell, the old method of controlling the
workbook-specific startup dialog has been replaced by an Excel-wide set
of trust center settings. The result is as you have seen - in order to
enable the links the user has to notice the bar that appears below the
ribbon and click the Options button and then Enable this content.

I am still trying to clarify with Microsoft exactly how they intended
the different settings in Edit Links and in the Trust Center and in
Excel Options to interact. It seems to me to be a bit of a mess.
----
Meanwhile, one option would be to have the users load a small workbook
that does not contain links and have it give the user the choice of
whether or not to update the links; it would then go on to open the
real workbook (using the UpdateLinks argument of Workbooks.Open to give
the required result); it would then close itself.
---
The small workbook would contain a macro in a standard module,
something like this:

Sub Auto_Open()
Application.OnTime Now, "Continue_Open" ' let Excel opening finish
End Sub

Sub Continue_Open()
' runs after the workbook is fully open
Dim iUpdate As Integer
If MsgBox("Shall I update the links?", vbYesNo) = vbYes Then
iUpdate = 3
Else
iUpdate = 0
End If
' change the file name in the next line...
Workbooks.Open ThisWorkbook.Path & "\Real.xls", UpdateLinks:=iUpdate
ThisWorkbook.Close
End Sub

Bill Manville
MVP - Microsoft Excel, Oxford, England
No email replies please - respond to newsgroup
Back to top
Login to vote
Mary Ann

External


Since: Mar 04, 2006
Posts: 70



(Msg. 3) Posted: Mon Oct 06, 2008 11:22 am
Post subject: Re:_Automatic_updates_of_links_b [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thank you Bill. If you are in discussion with Microsoft it might be worth
pointing out the the MS Help refers to a Don't Update button, which doesn't
appear to exist.

"Bill Manville" wrote:

> Excel 2007 makes the control of link updating harder, in my opinion;
> certainly confusing!
>
> As far as I can tell, the old method of controlling the
> workbook-specific startup dialog has been replaced by an Excel-wide set
> of trust center settings. The result is as you have seen - in order to
> enable the links the user has to notice the bar that appears below the
> ribbon and click the Options button and then Enable this content.
>
> I am still trying to clarify with Microsoft exactly how they intended
> the different settings in Edit Links and in the Trust Center and in
> Excel Options to interact. It seems to me to be a bit of a mess.
> ----
> Meanwhile, one option would be to have the users load a small workbook
> that does not contain links and have it give the user the choice of
> whether or not to update the links; it would then go on to open the
> real workbook (using the UpdateLinks argument of Workbooks.Open to give
> the required result); it would then close itself.
> ---
> The small workbook would contain a macro in a standard module,
> something like this:
>
> Sub Auto_Open()
> Application.OnTime Now, "Continue_Open" ' let Excel opening finish
> End Sub
>
> Sub Continue_Open()
> ' runs after the workbook is fully open
> Dim iUpdate As Integer
> If MsgBox("Shall I update the links?", vbYesNo) = vbYes Then
> iUpdate = 3
> Else
> iUpdate = 0
> End If
> ' change the file name in the next line...
> Workbooks.Open ThisWorkbook.Path & "\Real.xls", UpdateLinks:=iUpdate
> ThisWorkbook.Close
> End Sub
>
> Bill Manville
> MVP - Microsoft Excel, Oxford, England
> No email replies please - respond to newsgroup
>
>
Back to top
Login to vote
Paul Wetter

External


Since: Mar 18, 2009
Posts: 1



(Msg. 4) Posted: Wed Mar 18, 2009 9:01 am
Post subject: Re:_Automatic_updates_of_links_b [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

This post is a little stale but, it best describes the issues I have been
having and it sounds like you were looking into it further.

I too have several workbooks that are linked and the users of these
workbooks would rather have a choice on wheather to update links or not. The
major problem is as stated, that the prompts to appear as the documentation
tells you they should.

This is my scenario:
1. Users have several workbooks that have links to others.
2. Users do not want the links to always automatically update.
3. Users would like these source locations to also be in trusted sites for
their macros.

This is where we run into the issue. When the workbook is in the trusted
sites, it will not follow the rules to prompt for updating links (like Excel
2003 did). Even with the settings of "Ask to update automatic links" in the
options and the Startup Prompt set to "Let users choose to display the alert
or not", the links will update regardless. If you set the startup to "Don't
display the alert and don't update automatic links" then the links do not
update but, they don't prompt either.

Did you get any further with Microsoft on working with linked workbooks? To
me it still seems there is something broken as it does not behave how the
Excel documentation says it should.

Any input would be great.
Thanks!

"Bill Manville" wrote:

> Excel 2007 makes the control of link updating harder, in my opinion;
> certainly confusing!
>
> As far as I can tell, the old method of controlling the
> workbook-specific startup dialog has been replaced by an Excel-wide set
> of trust center settings. The result is as you have seen - in order to
> enable the links the user has to notice the bar that appears below the
> ribbon and click the Options button and then Enable this content.
>
> I am still trying to clarify with Microsoft exactly how they intended
> the different settings in Edit Links and in the Trust Center and in
> Excel Options to interact. It seems to me to be a bit of a mess.
> ----
> Meanwhile, one option would be to have the users load a small workbook
> that does not contain links and have it give the user the choice of
> whether or not to update the links; it would then go on to open the
> real workbook (using the UpdateLinks argument of Workbooks.Open to give
> the required result); it would then close itself.
> ---
> The small workbook would contain a macro in a standard module,
> something like this:
>
> Sub Auto_Open()
> Application.OnTime Now, "Continue_Open" ' let Excel opening finish
> End Sub
>
> Sub Continue_Open()
> ' runs after the workbook is fully open
> Dim iUpdate As Integer
> If MsgBox("Shall I update the links?", vbYesNo) = vbYes Then
> iUpdate = 3
> Else
> iUpdate = 0
> End If
> ' change the file name in the next line...
> Workbooks.Open ThisWorkbook.Path & "\Real.xls", UpdateLinks:=iUpdate
> ThisWorkbook.Close
> End Sub
>
> Bill Manville
> MVP - Microsoft Excel, Oxford, England
> No email replies please - respond to newsgroup
>
>
Back to top
Login to vote
AdamB

External


Since: Mar 26, 2009
Posts: 1



(Msg. 5) Posted: Thu Mar 26, 2009 12:54 pm
Post subject: Re:_Automatic_updates_of_links_b [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Paul,

You and I are probably looking for the same answer in the same spots. I've
seen your post on another forum like this as well. I have scoured the
internet trying to find the answer to this problem. It appears no one has an
answer. I really think it's a bug that hopefully Microsoft will address in
SP2 of Office 2007. No matter what, it never prompts, just like you say,
unless the workbook is in an untrusted location. Then you can choose not to
enable content, however then you disable macros as well, which is not ideal.

"Paul Wetter" wrote:

> This post is a little stale but, it best describes the issues I have been
> having and it sounds like you were looking into it further.
>
> I too have several workbooks that are linked and the users of these
> workbooks would rather have a choice on wheather to update links or not. The
> major problem is as stated, that the prompts to appear as the documentation
> tells you they should.
>
> This is my scenario:
> 1. Users have several workbooks that have links to others.
> 2. Users do not want the links to always automatically update.
> 3. Users would like these source locations to also be in trusted sites for
> their macros.
>
> This is where we run into the issue. When the workbook is in the trusted
> sites, it will not follow the rules to prompt for updating links (like Excel
> 2003 did). Even with the settings of "Ask to update automatic links" in the
> options and the Startup Prompt set to "Let users choose to display the alert
> or not", the links will update regardless. If you set the startup to "Don't
> display the alert and don't update automatic links" then the links do not
> update but, they don't prompt either.
>
> Did you get any further with Microsoft on working with linked workbooks? To
> me it still seems there is something broken as it does not behave how the
> Excel documentation says it should.
>
> Any input would be great.
> Thanks!
>
> "Bill Manville" wrote:
>
> > Excel 2007 makes the control of link updating harder, in my opinion;
> > certainly confusing!
> >
> > As far as I can tell, the old method of controlling the
> > workbook-specific startup dialog has been replaced by an Excel-wide set
> > of trust center settings. The result is as you have seen - in order to
> > enable the links the user has to notice the bar that appears below the
> > ribbon and click the Options button and then Enable this content.
> >
> > I am still trying to clarify with Microsoft exactly how they intended
> > the different settings in Edit Links and in the Trust Center and in
> > Excel Options to interact. It seems to me to be a bit of a mess.
> > ----
> > Meanwhile, one option would be to have the users load a small workbook
> > that does not contain links and have it give the user the choice of
> > whether or not to update the links; it would then go on to open the
> > real workbook (using the UpdateLinks argument of Workbooks.Open to give
> > the required result); it would then close itself.
> > ---
> > The small workbook would contain a macro in a standard module,
> > something like this:
> >
> > Sub Auto_Open()
> > Application.OnTime Now, "Continue_Open" ' let Excel opening finish
> > End Sub
> >
> > Sub Continue_Open()
> > ' runs after the workbook is fully open
> > Dim iUpdate As Integer
> > If MsgBox("Shall I update the links?", vbYesNo) = vbYes Then
> > iUpdate = 3
> > Else
> > iUpdate = 0
> > End If
> > ' change the file name in the next line...
> > Workbooks.Open ThisWorkbook.Path & "\Real.xls", UpdateLinks:=iUpdate
> > ThisWorkbook.Close
> > End Sub
> >
> > Bill Manville
> > MVP - Microsoft Excel, Oxford, England
> > No email replies please - respond to newsgroup
> >
> >
Back to top
Login to vote
GuestionGuy

External


Since: Jun 15, 2009
Posts: 1



(Msg. 6) Posted: Mon Jun 15, 2009 2:30 pm
Post subject: Re:_Automatic_updates_of_links_b [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Anyone find an answer to this? Office 2007 SP2 did not solve the issue for me.
Back to top
Login to vote
macropod

External


Since: Jul 02, 2008
Posts: 746



(Msg. 7) Posted: Sat Jun 27, 2009 2:05 am
Post subject: Re:_Automatic_updates_of_links_b [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Depends on what the issue is. What is the problem you're having?

--
Cheers
macropod
[Microsoft MVP - Word]


"GuestionGuy" <GuestionGuy.DeleteThis@discussions.microsoft.com> wrote in message news:11564BC5-F9B0-42C8-817B-F8BA4CF39218@microsoft.com...
> Anyone find an answer to this? Office 2007 SP2 did not solve the issue for me.
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Links All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET |
  • IT Support