Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 31
Default How to I make sure that my workbook always opens with a desired sh

Hi!
I've got a problem. I want to make sure that everytime I open a workbook, to
make it open always with the same page/sheet I want, because normally it will
open the sheet you were working on last.(before you closed it).
so please if someone can help me.



  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 11,058
Default How to I make sure that my workbook always opens with a desired sh

Let's say you sheetname is shariq. Put the following macro in ThisWorkBook
code:

Private Sub Workbook_Open()
Worksheets("shariq").Activate
End Sub


Whenever the workbook is opened, that sheet will be activated.
--
Gary's Student


"Shariq" wrote:

Hi!
I've got a problem. I want to make sure that everytime I open a workbook, to
make it open always with the same page/sheet I want, because normally it will
open the sheet you were working on last.(before you closed it).
so please if someone can help me.



  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 76
Default How to I make sure that my workbook always opens with a desired sh

Use this macro code to select the desired sheet when opening

Private Sub Auto_Open()
Sheets("The sheet name").Select
End Sub

Tony

On Dec 20, 8:59 pm, Shariq wrote:
Hi!
I've got a problem. I want to make sure that everytime I open a workbook, to
make it open always with the same page/sheet I want, because normally it will
open the sheet you were working on last.(before you closed it).
so please if someone can help me.


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 367
Default How to I make sure that my workbook always opens with a desired sh

If you hit Ctrl + Home it will take you to the first cell in the worksheet
you are working on. If you save while there it will open to this spot. Same
should work for any page you are on when you save.

"Shariq" wrote:

Hi!
I've got a problem. I want to make sure that everytime I open a workbook, to
make it open always with the same page/sheet I want, because normally it will
open the sheet you were working on last.(before you closed it).
so please if someone can help me.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
make multiple copies of a sheet in a new workbook galeanne Excel Worksheet Functions 4 April 9th 23 12:50 PM
How to I make sure that my workbook always opens with a desired sh Shariq Excel Discussion (Misc queries) 7 December 21st 06 11:14 AM
When opening an existing workbook, Excel opens but not the workbo. llhughes Excel Discussion (Misc queries) 1 February 12th 05 07:41 PM
Stubborn toolbars in Excel 007 Excel Discussion (Misc queries) 9 December 11th 04 02:02 PM
Workbook opens twice Ron Excel Discussion (Misc queries) 1 December 1st 04 08:45 PM


All times are GMT +1. The time now is 10:57 PM.

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

About Us

"It's about Microsoft Excel"