Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To make the file read on:
FileSaveAsClick on ToolsGeneral OptionsEnter a password in the password to modify field. To open to the Intro sheet: Alt+F11 ' to open Visual Basic In the VBAProject widow: double click on ThisWorkbook and enter this code in the code section: Private Sub Workbook_Open() Sheets("Introduction").Select Range("A1").Select End Sub This assume that your sheet1 is named Introduction. Then save the file and close the VB editor. HTH "June" wrote: My spreadsheet has numerous sheets within it. To make things easier for the user I want the spreadsheet to open to the Introduction sheet. (From there they can use hyperlinks to go to the desired sheet(s).) What is the easiest way to do this? Also, how do I make the entire spreadsheet read-only except for me? This is my first with Excel to get it to do something for me other than multiply so could you put it in steps? Thank you for your help. June |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for the fast help!!! It works great!!!!
June "David Hepner" wrote: To make the file read on: FileSaveAsClick on ToolsGeneral OptionsEnter a password in the password to modify field. To open to the Intro sheet: Alt+F11 ' to open Visual Basic In the VBAProject widow: double click on ThisWorkbook and enter this code in the code section: Private Sub Workbook_Open() Sheets("Introduction").Select Range("A1").Select End Sub This assume that your sheet1 is named Introduction. Then save the file and close the VB editor. HTH "June" wrote: My spreadsheet has numerous sheets within it. To make things easier for the user I want the spreadsheet to open to the Introduction sheet. (From there they can use hyperlinks to go to the desired sheet(s).) What is the easiest way to do this? Also, how do I make the entire spreadsheet read-only except for me? This is my first with Excel to get it to do something for me other than multiply so could you put it in steps? Thank you for your help. June |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I apply changes I make on one sheet to other sheets? | Excel Discussion (Misc queries) | |||
Data from two sheets make up real time list in the new sheet?? | Excel Worksheet Functions | |||
Can you make all sheets scroll when scrolling one sheet | Excel Worksheet Functions | |||
How do I make a 5th sheet to total cells from previous sheets in . | Excel Worksheet Functions | |||
How do I make a sheet that combines all tabbed sheets & update as. | New Users to Excel |