6StringJazzer,
I'm not sure which method (zooming vs combo boxes) I would prefer to use in terms of 'zooming' in on a highlighted cell, but it seems to me both methods require VBA code. In the worksheet that I would like to incorporate either of these 'zooming' functions I already have some VBA code as follows:
Option Explicit
Private Sub WorkSheet_Change(ByVal Target As Range)
Dim cell As Range
Dim RNG As Range
For Each cell In Target
If Not Intersect(cell, Range("J11,H17")) Is Nothing Then
Set RNG = Range("J11,H17")
ElseIf Not Intersect(cell, Range("J13,J20")) Is Nothing Then
Set RNG = Range("J13,J20")
ElseIf Not Intersect(cell, Range("H26,J32,J41")) Is Nothing Then
Set RNG = Range("H26,J32,J41")
ElseIf Not Intersect(cell, Range("H27,H28,H31,H34")) Is Nothing Then
Set RNG = Range("H27,H28,H31,H34")
ElseIf Not Intersect(cell, Range("H19,H29,H36,H38")) Is Nothing Then
Set RNG = Range("H19,H29,H36,H38")
ElseIf Not Intersect(cell, Range("C5,H31,H40")) Is Nothing Then
Set RNG = Range("C5,H31,H40")
End If
If Not RNG Is Nothing Then
Application.EnableEvents = False
RNG = cell
Application.EnableEvents = True
End If
Next cell
End Sub
How would I adjust this current code to incorporate either of the 'zoom' code functions while retaining the full functionality of the current one?
Also the last worksheet I uploaded was from a bad lot. The good worksheet is attached and was given to me from another contributor from this forum.
-billy
Bookmarks