Question : Maximize Worksheet when opened

I have found a method to maximize Excel when a file is opened but how can I also maximize that window/sheet as well?

This is what I used to maxmize Excel:

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

Answer : Maximize Worksheet when opened

Try:

ActiveWindow.WindowState = xlMaximized

Kevin
Random Solutions  
 
programming4us programming4us