Aquila has attended:
Excel VBA Intro Intermediate course
Open event
Hi.
I want my workbook to be on a specified sheet when it is opened. How would I go about doing this? Would it be in my macro codes, or is there a excel setting for this?
Thanks
RE: Open event
Hi Aquila
Thanks for the question
In the project explorer select the "ThisWorkbook" object.
Select the Workbook object (from the left hand combo above the code window). This will automatically create an on open event.
Then write the code to select the worksheet, e.g
sheets(2).select
Hope this helps
Regards
Stephen