Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
icasaresg
 
Posts: n/a
Default Starting a MS Excel workbook with a particular worksheet

When I open a workbook, it always does with SHEET 1. How do I start it with a
worksheet other than SHEET 1? I think it is useful when renaming the
worksheets.

Thanks
  #2   Report Post  
Don Guillett
 
Posts: n/a
Default

Excel will open to the worksheet when the file last saved unless you use a
workbook_open or auto_open event to goto the worksheet desired.

--
Don Guillett
SalesAid Software

"icasaresg" wrote in message
...
When I open a workbook, it always does with SHEET 1. How do I start it

with a
worksheet other than SHEET 1? I think it is useful when renaming the
worksheets.

Thanks



  #3   Report Post  
Dave Peterson
 
Posts: n/a
Default

Excel will help by opening to the worksheet that was active when you last saved
it.

You could have a macro that runs when you open the workbook that goes to a
particular cell:

Option Explicit
Sub Auto_Open()
application.goto worksheets("sheet3").range("b19")
end sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm



icasaresg wrote:

When I open a workbook, it always does with SHEET 1. How do I start it with a
worksheet other than SHEET 1? I think it is useful when renaming the
worksheets.

Thanks


--

Dave Peterson
  #4   Report Post  
Gord Dibben
 
Posts: n/a
Default

Dave P. has provided code to open an existing workbook at the sheet of your
choice.

If you are perchance asking how to create New workbooks with a sheetname other
than Sheet1 as default..........

Create a new workbook, re-name Sheet1 to a name of your choice.

Delete the other sheets and FileSave AsFile Type MS Excel Template(*.xlt)
and name it BOOK. Excel will add the .XLT.

Store this book in your XLSTART folder and it will become the default FileNew
Workbook.


Gord Dibben Excel MVP

On Sat, 19 Feb 2005 09:21:02 -0800, icasaresg
wrote:

When I open a workbook, it always does with SHEET 1. How do I start it with a
worksheet other than SHEET 1? I think it is useful when renaming the
worksheets.

Thanks


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
Why does Excel 2003 freeze when saving a workbook that has importe NeedToKnow Excel Worksheet Functions 0 February 18th 05 10:07 PM
Starting MS Excel with a worksheet other than SHEET 1 IGNACIO Excel Worksheet Functions 2 February 18th 05 06:29 PM
link Access workbook to Excel workbook Toinett Excel Discussion (Misc queries) 1 January 31st 05 03:37 PM
Can't open workbook (in Excel 2000) gcotterl Excel Discussion (Misc queries) 2 January 23rd 05 12:42 AM
excel workbook maudie Excel Worksheet Functions 0 January 6th 05 09:11 PM


All times are GMT +1. The time now is 09:08 AM.

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

About Us

"It's about Microsoft Excel"