gojets1721
Registered User.
- Local time
- Today, 08:56
- Joined
- Jun 11, 2019
- Messages
- 430
So I've got a form that I'm using to allow the user to input info into some fields and then filter down a form.
One field is an employee name field and I can't seem to code it in a way that filters by 'contains' rather than 'equals. (I.e. if a user types in 'john', I would want fields with 'john smith' to populate in the report. But right now, you have to type 'john smith' in full to get the applicable entries to populate on the form)
Here is the code:
Any suggestions?
One field is an employee name field and I can't seem to code it in a way that filters by 'contains' rather than 'equals. (I.e. if a user types in 'john', I would want fields with 'john smith' to populate in the report. But right now, you have to type 'john smith' in full to get the applicable entries to populate on the form)
Here is the code:
Code:
If Not IsNull(frm!txtEmployeeName) Then
If strWhere <> "" Then
strWhere = strWhere & " AND "
End If
strWhere = strWhere & "[EmployeeName] LIKE '" & frm!txtEmployeeName & "'"
End If
Any suggestions?