#1   Report Post  
Deena
 
Posts: n/a
Default Spreadsheet Tabs

Is there a way that when you open a file it will automatically go to the
first tab?
  #2   Report Post  
Neil
 
Posts: n/a
Default Spreadsheet Tabs

Deena,

If you're familiar with VBA and Macros, one of the easiest ways is to put
the following line into the 'Open' event of your workbook:

Sheets("Sheet1").Select

You will need to change 'Sheet1' to the name of the worksheet you want to
select, but this means that it doesn't necessarily have to be the first
sheet, it can be anywhere in the sequence you like.

If you're not familiar with VBA, there are plenty of beginners tutorials
around that will give you enough of a start to get you going.

HTH

Neil
www.nwarwick.co.uk

"Deena" wrote:

Is there a way that when you open a file it will automatically go to the
first tab?

  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default Spreadsheet Tabs

Private Sub Workbook_Open()
Worksheets(1).Select
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Deena" wrote in message
...
Is there a way that when you open a file it will automatically go to the
first tab?



  #4   Report Post  
Deena
 
Posts: n/a
Default Spreadsheet Tabs

I changed the information as described below; but, it still will not open to
the tab that I specified. Any suggestions?

"Neil" wrote:

Deena,

If you're familiar with VBA and Macros, one of the easiest ways is to put
the following line into the 'Open' event of your workbook:

Sheets("Sheet1").Select

You will need to change 'Sheet1' to the name of the worksheet you want to
select, but this means that it doesn't necessarily have to be the first
sheet, it can be anywhere in the sequence you like.

If you're not familiar with VBA, there are plenty of beginners tutorials
around that will give you enough of a start to get you going.

HTH

Neil
www.nwarwick.co.uk

"Deena" wrote:

Is there a way that when you open a file it will automatically go to the
first tab?

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 to handle multiple currencies with one spreadsheet Michael Mullican Excel Discussion (Misc queries) 1 October 5th 05 05:18 PM
Using Excel spreadsheet as input to Access dougb415 Excel Discussion (Misc queries) 0 September 22nd 05 02:33 PM
Spreadsheet merging problems Sam B Excel Worksheet Functions 0 September 19th 05 08:05 PM
Linkage data between two spreadsheet vitality Excel Worksheet Functions 2 September 15th 05 06:49 AM
Delay to startup excel spreadsheet Gee Excel Worksheet Functions 2 August 2nd 05 07:30 PM


All times are GMT +1. The time now is 04:50 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"