J
You can't.
The next best is to have a macro such as below. No error trapping.
Sub contains()
Dim Rng As Range
Set Rng = Application.InputBox(prompt:="Select Column to Filter", _
Title:="Auto Filter", Type:=8)
pick = InputBox("enter a value or string." & Chr(13) _
& " Wildcards * can be used")
Rng.AutoFilter
Rng.AutoFilter Field:=1, Criteria1:=pick, Operator:=xlAnd
End Sub
Gord Dibben Excel MVP
On Wed, 14 Sep 2005 11:51:01 -0700, "J Engineer" <J