I want to hide rows 7 through X in Excel, where X is the row 6 rows above the first instance of a value in column A.
Google seems to come up with things that look WAY WAY too complicated for my purposes.
What I have so far is a basic:
'Select Rows 7 through 3 rows before the first instance of any text in column A, then hides them
Rows("7:62").Select
' have to update the 62 above to look for text and hide based on that
Selection.Rows.Group
Selection.EntireRow.Hidden = True
within my Sub. I just need to figure out how to change the 62 to be a variable cell that is usually around the 60's, but is not always the exact value of 62.