Perhaps something like this event macro in the worksheet named "Main".
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("A5").Value = "REP" Then
Sheets("Request").Activate
Sheets("Request").Range("A1").Select
End If
End Sub
And this event macro in the worksheet named "Request". Change column and
row to suit your last cell in the range REP.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 1 And Target.Row = 10 Then
Sheets("Main").Activate
Sheets("Main").Range("A5").Select
End If
End Sub
HTH
Regards,
Howard
>I am creating a budget spreadsheet and wish to have a macro run
> automatically and navigate to a specific cell of a different worksheet
[quoted text clipped - 7 lines]
> worksheet, sending the user back to the MAIN worksheet to continue on.
> Any ideas??
bluegrassstateworker - 28 Jul 2006 14:42 GMT
That did it! Thanks! Since I am likely to be moving and manipulating
the location of these cells, I am going to try to give them a name
rather than using the absolute cell reference. -- A
> Perhaps something like this event macro in the worksheet named "Main".
>
[quoted text clipped - 30 lines]
> > worksheet, sending the user back to the MAIN worksheet to continue on.
> > Any ideas??