I am sorry I have not been able to help you but when I asked for "specifics" all I got is more vague desciption. I have failed to understand what exactly you want. What you consider a "whole section" and what I consider a "whole section" are probably different. The people on this forum know how to do what you want to do, you just haven't adequately conveyed what you would like accomplished.
I have created a code with my guess as to what you want done. Odds are it is not right but maybe I got lucky. (Note: Row 132 is an extra row which I deleted prior to running the macro)
Private Sub Worksheet_Change(ByVal Target As Range)
Dim ws As Worksheet: Set ws = Sheets("C1 2013")
Application.ScreenUpdating = False
On Error GoTo iEnd
If Not Intersect(Target, ws.Range("E3")) Is Nothing Then
If Target.Value = "x" Then
For icell = 218 To 8 Step -14
If ws.Range("B" & icell).Value = "" Then
ws.Range("B" & icell, "B" & icell + 10).EntireRow.Hidden = True
End If
Next icell
End If
End If
Application.ScreenUpdating = True
iEnd:
End Sub
Bookmarks