Have the following code
What I wish to happen is to search column A to find the cell with the string "staff member" and simply select the the range beginning 2 cells below to 4 cells below (so selecting 3 cells total)
Just drawing a blank
Code:
Range("A1").Select
Set SearchRangeA = Columns("A:A")
Dim HeadCoach As String
HeadCoach = SearchRangeA.Find(what:="Staff Member").Offset(2, 0).Select
ActiveCell.Offset(4, 0).Select
What I wish to happen is to search column A to find the cell with the string "staff member" and simply select the the range beginning 2 cells below to 4 cells below (so selecting 3 cells total)
Just drawing a blank
Last edited: