2017-11-15 1 views

Antwort

1

Try this:

On Error Resume Next 
Dim SearchRange as Range 
Set SearchRange = Sheets("Inventory").Range("G2:G1000").SpecialCells(xlCellTypeVisible) 
On Error GoTo 0 

If Not SearchRange is Nothing Then 

    Dim FoundCell as Range 
    Set FoundCell = SearchRange.Find(mindat, lookat:=xlWhole) 

    If Not FoundCell is Nothing Then 
     minrow = FoundCell.Row 
    End If 

End If 
+0

Superb Geck .. es funktionierte –

Verwandte Themen