View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Run in Minimised Window

Hi,

You could put this in the workbook_open event

Private Sub Workbook_Open()
Application.WindowState = xlMinimized
End Sub

Mike

"Jason Zischke" wrote:

Hi all

I put a shortcut on my desktop and changed its properties to run to a
minimise window however it still opens excel in a normal window, is there any
way to fix this?

Jason