G
Guest
I have set up a filter as follows:
strWhere = strWhere & "([FirstName] = '" & _
Me.FirstName & "')
DoCmd.OpenForm "AgencyInfo", , , strWhere
This allows me, for example, if the name entered in FirstName is Kimberly to
filter for all Kimberlys. Is there a way to do a fiter not for an exact value
but for an includes value. Therefore if the name entered in FirstName was
Kim, Kimberly would still show up in the filtered values? Thanks!
strWhere = strWhere & "([FirstName] = '" & _
Me.FirstName & "')
DoCmd.OpenForm "AgencyInfo", , , strWhere
This allows me, for example, if the name entered in FirstName is Kimberly to
filter for all Kimberlys. Is there a way to do a fiter not for an exact value
but for an includes value. Therefore if the name entered in FirstName was
Kim, Kimberly would still show up in the filtered values? Thanks!