Macro

Marky

New Member
Joined
Feb 22, 2002
Messages
3
Is there a macro I can use, that opens an excelsheet alway on the same sheet of a workbook.??

Second question: Is it possible to write a macro that lets you always move from cell to cell by useing tab Within a range of for example Cell A1:D10.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
On 2002-02-23 12:00, Marky wrote:
Is there a macro I can use, that opens an excelsheet alway on the same sheet of a workbook.??
Yes


Open the VBA editor, double click on ThisWorkbook for the workbook that you would like to have a specific sheet activated on and paste in this code:

Private Sub Workbook_Open()
'Activates a named sheet when the workbook is opened.
' Rename Sheet2 with the name of the sheet you would like to activate on opening.
Worksheets("Sheet2").Activate

End Sub



Second question: Is it possible to write a macro that lets you always move from cell to cell by useing tab Within a range of for example Cell A1:D10.

If you unprotect the range that you would like to tab to and then protect the sheet, this will allow you to use tab to go between unprotected cells.


Regards,

Gary Hewitt-Long
This message was edited by gplhl on 2002-02-24 03:01
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,038
Members
448,940
Latest member
mdusw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top