Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
sh.[A1].select
End Sub
[code]
Skip,
[sub]
[glasses] When a group touring the Crest Toothpaste factory got caught in a large cooler, headlines read...
[b]Tooth Company Freeze a Crowd![/b] and
[b]Many are Cold, but Few are Frozen![/b][tongue][/sub]
's and nothing happened. Im assuming Ive stuck your code in teh wrong place? My spreadsheet has a total of 15 worksheets with 3 modules (if thats any help)!
Thanks
Shy
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
select case sh.name
case "Sheet1","Sheet2"
sh.[A1].select
end select
End Sub
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
select case sh.name
case "Sheet1","Sheet2"
Case else
sh.[A1].select
end select
End Sub