for a better user experience, I would like to make a spreadsheet downloaded from the web maximized when it is opened through the user's desktop MS Excel 2010 program.
Can this be achieved through preference configuration or is there Macro involved?
Thanks! Che
This is a simple macro to do what you ask. You need to put it in the workbook module.
Private Sub Workbook_Open()
Application.WindowState = xlMaximized 'maximize Excel
ActiveWindow.WindowState = xlMaximized 'maximize the workbook in Excel
End Sub
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With