Just like the title says, let's just go a little more detailed.
If A1 ever equals "1", I want Sheet 2 to automatically be displayed.
Just like the title says, let's just go a little more detailed.
If A1 ever equals "1", I want Sheet 2 to automatically be displayed.
Macro required. You would put this code in whatever sheet it is that has the A1 you are talking about.
This assumes that there is some value on the same sheet that will cause A1 to become 1. If A1 has a formula that refers only to other sheets, then this won't work.![]()
Private Sub Worksheet_Change(ByVal Target As Range) If [A1] = 1 Then Sheet2.Activate End If End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks