In Excel VBA how can I select first visible row, cell "E" after applying autofilter.
I'm using this code:
Dim FindString As String
Dim Rng As Range
FindString = Trim(Cells(1, 2)) 'Cell B1
If FindString = "" Then
    ShowAllData
Else
    Range("C3").Select
    
    ActiveSheet.Range("$A$2:$F$14480").AutoFilter Field:=3
    ActiveSheet.Range("$A$2:$F$14480").AutoFilter Field:=3, Criteria1:="=*" & FindString & "*", Operator:=xlAnd
    If FindString <> "" Then
        'HERE it not works >>>>>
        Columns(6).Cells.SpecialCells(xlCellTypeVisible).Cells(6).Select
        '>>>>>
    End If
End If
 
     
    