So this is what i want to do after doing a simple filtering i want to select the first range that appears after the filter ranges, and right now all i am doing is selecting a range inside the first occulted row, is there any manners of jumping the occulted rows?
Set xBaseCell = Range("A2").CurrentRegion
Set xUnwantedCell = Range("B1:D1")
xUnwantedCell.Clear
With xBaseCell
.AutoFilter 2, "10", xlTop10Items
.AutoFilter 8, "28", xlFilterValues
.AutoFilter 11, "SA LIGHT FABS", xlFilterValues
End With
xInputBoxValue = InputBox("Do you want me to clear certain filters and advance to the second stage? Yes or no")
LCase (xInputBoxValue)
If xInputBoxValue = "no" Then
Exit Sub
Else:
xBaseCell.AutoFilter 2
Set xSelectedRange = Range("a2").Offset(1, 8)
xSelectedRange.Select
End If