How can I activate cell A1 each time I switch to another she

andy-s

Board Regular
Joined
Mar 22, 2002
Messages
51
Tjobings... :)

QUESTION 1
I wonder if there is a way, either by macro or predefined excel command, to activate cell A1 each time I change to another sheet.

QUESTION 2
I've about 25 macros defined in 14 Modules. Should I use only 1 Module wiht alle the 24 macro definition, or doesnt it affect the Excel performance at all?

Thanks...
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Place this code in the WorkSheet Modules

Private Sub Worksheet_Activate()
Range("$A$1").Select
End Sub
This message was edited by lenze on 2002-04-24 14:05
 
Upvote 0

Forum statistics

Threads
1,213,532
Messages
6,114,177
Members
448,554
Latest member
Gleisner2

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