Right click sheet tab>view code>paste this. Now if you change cell e1 to 2
you goto sheet 9
Private Sub Worksheet_Change(ByVal Target As Range)
'correct word wrap if necessary
If Target.Address = "$E$1" And Target = 2 Then Sheets("sheet9").Select
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"Charlie Betz" <Charlie
(E-Mail Removed)> wrote in message
news

FBA31B7-CA37-4B11-9E4B-(E-Mail Removed)...
>I have developed a game in Excel. Successful completion causes a formula
>to
> return 'True'. I want this result to launch a macro. As background the
> macro
> will transport the player to another sheet.
>
> Any advice will be very much appreciated