Hi, I want to filter my Company Name with contain but my company name value is integer.
I have this code for my other filter, this one is working. I am having trouble with my Company Name.
Code:If Not IsNull(Me.ContactPerson) Then Forms("frmMain").Filter = "[ContactPerson] Like " & Chr(34) & "*" & Me.ContactPerson & "*" & Chr(34) Forms("frmMain").FilterOn = True End If![]()