A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How can I set a workbook to open always with a certain sheet I wan



 
 
Thread Tools Display Modes
  #1  
Old December 20th, 2006, 03:19 AM posted to microsoft.public.excel.setup
Shariq
external usenet poster
 
Posts: 28
Default How can I set a workbook to open always with a certain sheet I wan

I'd like to have the workbook set to open alway with a certain page, no
matter where I was last time working on it, but it should open always with a
certain page I want
  #2  
Old December 20th, 2006, 10:01 AM posted to microsoft.public.excel.setup
Nick Hodge
external usenet poster
 
Posts: 614
Default How can I set a workbook to open always with a certain sheet I wan

Shariq

Use a Workbook_Open() event in the workbook

Private Sub Workbook_Open()
Worksheets("Sheet1").Activate
Range("A1").Select
End Sub

To implement, right-click the small Excel icon for the workbook and select
view code. Paste here and save

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
www.nickhodge.co.uk


"Shariq" wrote in message
...
I'd like to have the workbook set to open alway with a certain page, no
matter where I was last time working on it, but it should open always with
a
certain page I want


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:44 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.