#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default worksheet

Hi All,
I have created some worksheet tab inside my file.
Let say the first worksheet is called Main, followed by worksheet called
two, three, four.

Is it possible to allow users to refer to worksheet Main whenever the file
is opened? As far as i know, whenever differ users open the file and using
diff tab like two, three or four when save it, the next user when open will
see that last previous worksheet. Therefore, i would like all my users to see
Main no matters the last user has saved on which worksheet.

thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default worksheet

hi
open the vb editor(Alt+F11)
In the project window(far left) expand your project(file)
double click This Workbook
above the code window(far right) click the drop down that says general and
click this workbook.
with will appear in the code window.
Private Sub Workbook_Open()

End Sub
past this code between private sub and end sub
Sheets("Main").activate
should look like this
Private Sub Workbook_Open()
Sheets("Main").activate
End Sub

close vb editor and save file. then each time the file is opened, regardless
of which sheet was last use, excel will always go to sheet main.

regards
FSt1

"kyoshirou" wrote:

Hi All,
I have created some worksheet tab inside my file.
Let say the first worksheet is called Main, followed by worksheet called
two, three, four.

Is it possible to allow users to refer to worksheet Main whenever the file
is opened? As far as i know, whenever differ users open the file and using
diff tab like two, three or four when save it, the next user when open will
see that last previous worksheet. Therefore, i would like all my users to see
Main no matters the last user has saved on which worksheet.

thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default worksheet

Thanks!

"FSt1" wrote:

hi
open the vb editor(Alt+F11)
In the project window(far left) expand your project(file)
double click This Workbook
above the code window(far right) click the drop down that says general and
click this workbook.
with will appear in the code window.
Private Sub Workbook_Open()

End Sub
past this code between private sub and end sub
Sheets("Main").activate
should look like this
Private Sub Workbook_Open()
Sheets("Main").activate
End Sub

close vb editor and save file. then each time the file is opened, regardless
of which sheet was last use, excel will always go to sheet main.

regards
FSt1

"kyoshirou" wrote:

Hi All,
I have created some worksheet tab inside my file.
Let say the first worksheet is called Main, followed by worksheet called
two, three, four.

Is it possible to allow users to refer to worksheet Main whenever the file
is opened? As far as i know, whenever differ users open the file and using
diff tab like two, three or four when save it, the next user when open will
see that last previous worksheet. Therefore, i would like all my users to see
Main no matters the last user has saved on which worksheet.

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
plot graph from multiple worksheet as embedded chart object on every worksheet [email protected] Excel Discussion (Misc queries) 2 August 24th 06 05:26 PM
plot graph from multiple worksheet as embedded chart object on every worksheet [email protected] Excel Worksheet Functions 2 August 24th 06 05:26 PM
plot graph from multiple worksheet as embedded chart object on every worksheet jeftiong New Users to Excel 0 August 23rd 06 01:50 PM
Upload multiple text files into 1 excel worksheet + put the filename as the first column in the worksheet Aster Excel Worksheet Functions 3 March 12th 06 09:58 AM
I want in one worksheet to relatively link to/reference cells in another without changing the format of the current worksheet. [email protected] Excel Discussion (Misc queries) 0 September 22nd 05 04:39 PM


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