Force linked spreadsheet to open in fullsized window?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have one spreadsheet which contains a link to another spreadsheet. Click
on the (icon) link and the linked spreadsheet opens in a small window.

Is there any way that I can force this second (linked) spreadsheet to open
in a full size window?
 
HELP?? Can I assume from the lack of response that this is not possible? I
can workaround with a macro, but it doesn't work consistently.
 
Patricia said:
I have one spreadsheet which contains a link to another spreadsheet.
Click
on the (icon) link and the linked spreadsheet opens in a small window.

Is there any way that I can force this second (linked) spreadsheet to
open
in a full size window?

You can try this. Put it in the "Worksheet Module" of the "second
(linked) spreadsheet"

Private Sub Worksheet_Activate()
Application.DisplayFullScreen = True
End Sub

Private Sub Worksheet_Deactivate()
Application.DisplayFullScreen = False
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top