Force linked spreadsheet to open in fullsized window?

P

Patricia D

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?
 
P

Patricia D

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.
 
D

Desert Piranha

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
 
Top