I don't understand why you'd want to do this kind of thing, but...
You could group the sheets, select a cell, and ungroup the sheets.
If you want the selection to be the same when you swap between sheets, you could
use a macro.
This kind of thing would drive me nuts, but if you want...
This goes in the ThisWorkbook module.
Option Explicit
Dim mySelAddr As String
Dim mySheetNames As Variant
Private Sub Workbook_Open()
If IsArray(mySheetNames) Then
'do nothing
Else
Call MakeListOfSheets
End If
End Sub
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
Dim res As Variant
If IsArray(mySheetNames) Then
'do nothing
Else
Call MakeListOfSheets
End If
res = Application.Match(Sh.Name, mySheetNames, 0)
If IsError(res) Then
'not on the list
Exit Sub
End If
If mySelAddr = "" Then
'do nothing
Else
Application.EnableEvents = False
Sh.Range(mySelAddr).Select
Application.EnableEvents = True
End If
End Sub
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _
ByVal Target As Range)
Dim res As Variant
If IsArray(mySheetNames) Then
'do nothing
Else
Call MakeListOfSheets
End If
'check to see if it's one of the sheets
'you care about
res = Application.Match(Sh.Name, mySheetNames, 0)
If IsError(res) Then
'not on the list
Exit Sub
End If
mySelAddr = Target.Address(0, 0)
End Sub
Private Sub MakeListOfSheets()
mySheetNames = Array("sheet1", "sheet2", "sheet4")
End Sub
===========
If you're new to macros:
Debra Dalgleish has some notes how to implement macros here:
http://www.contextures.com/xlvba01.html
David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm
(General, Regular and Standard modules all describe the same thing.)