This assumes headers in Row 1, and that you want to delete "Enrolled" and "Week 7+" not the other way around. Try it on a copy of your worksheet first...
Sub TestMacro()
Dim lngR As Long
Set lngR = Cells(Rows.Count, "C").End(xlUp).Row
Range("F:F").Insert
With Range("F2:F" & lngR)
.FormulaR1C1 = "=VALUE(MID(RC[-1],6,3))>=7"
.Value = .Value
End With
With Columns("C:F")
.AutoFilter Field:=1, Criteria1:="Enrolled"
.AutoFilter Field:=4, Criteria1:="TRUE"
End With
Range("C2:C" & lngR).SpecialCells(xlCellTypeVisible).EntireRow.Delete
Cells.AutoFilter
Range("F:F").Delete
End Sub
Bookmarks