Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 469
Default Opening excel

does excel all ways want to open on sheet (1) is there a way to change it.
Know I cna copy all data to another sheet. That means I have a lot of
references to change also. This is reason to change opening page.
Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default Opening excel

you can create an auto open macro
in a code module:

Sub auto_open()
Worksheets("sheet2").Select
End Sub



--


Gary


"Curt" wrote in message
...
does excel all ways want to open on sheet (1) is there a way to change it.
Know I cna copy all data to another sheet. That means I have a lot of
references to change also. This is reason to change opening page.
Thanks



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Opening excel

Let's say whenever you open a certain workbook you want to open on a sheet
named "Special"

In ThisWorkbook code enter the following:

Private Sub Workbook_Open()
Sheets("Special").Activate
End Sub

--
Gary's Student
gsnu200702


"Curt" wrote:

does excel all ways want to open on sheet (1) is there a way to change it.
Know I cna copy all data to another sheet. That means I have a lot of
references to change also. This is reason to change opening page.
Thanks

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 116
Default Opening excel

Hi Curt,

I don't believe you can change the default sheet name on a standard Excel
startup.

You could create a file with the appropriate sheet name and store it in the
XLStart folder. This file will open on start as your default workbook. The
folder is located at:

C:\Program Files\Microsoft Office\Office10\XLStart

This is the start location for Excel 2002 (XP), yours may differ slightly if
you are running a different version.


Alan





"The only dumb question is the question left unasked."

"Curt" wrote in message
...
does excel all ways want to open on sheet (1) is there a way to change it.
Know I cna copy all data to another sheet. That means I have a lot of
references to change also. This is reason to change opening page.
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
How do I stop blank workbook from opening when opening an existing kjg Excel Discussion (Misc queries) 3 February 12th 10 09:36 PM
Trouble opening large size Excel file 155Mb in Excel 2007 pl2c Excel Discussion (Misc queries) 2 July 14th 06 11:45 PM
REF errors when opening excel in xp. works fine when opening wor. br Excel Discussion (Misc queries) 6 September 13th 05 11:41 AM
excel VBA problem - setting workbook as variable & opening/re-opening safe Excel Programming 1 August 20th 04 12:22 AM
Excel recalculates formulas when opening files last saved by an earlier version of Excel Jim Rech Excel Programming 0 April 7th 04 06:47 PM


All times are GMT +1. The time now is 12:59 AM.

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"