The below code was posted by spideynok. my greatest thanks!!
can someone tell me what this bit of the below code does... I have much to learn
Replace(" OR ([EmployeeName] Like '*%F*')", _
"%F", strFilters(intX))
Private Sub Command25_Click()
Dim strFilter As String, strFilters() As String
Dim intX As Integer
With Me
strFilters = Split(Nz(.Text23, ""), ",")
For intX = 0 To UBound(strFilters)
strFilter = strFilter & _
Replace(" OR ([EmployeeName] Like '*%F*')", _
"%F", strFilters(intX))
Next intX
.Filter = Replace(Mid(strFilter, 5), "'", Chr(34))
.FilterOn = (.Filter > "")
End With
End Sub