A
Allen Browne
The Like operator can search for parts of words.
Simple example:
"[MyMemo] Like ""*arch*"""
where "MyMemo" represents the name of your memo field.
For the example you gave, you would need to generate a string like this and
apply it as the Filter for your form:
"([MyMemo] Like ""*arch*"") AND ([MyMemo] Like ""*act*"") AND ([MyMemo]
Like ""*200*"")"
If the user enters the words into one text box, use the Split() function to
parse the words into an array, and loop through the array from LBound to
UBound to build up the filter string.
Simple example:
"[MyMemo] Like ""*arch*"""
where "MyMemo" represents the name of your memo field.
For the example you gave, you would need to generate a string like this and
apply it as the Filter for your form:
"([MyMemo] Like ""*arch*"") AND ([MyMemo] Like ""*act*"") AND ([MyMemo]
Like ""*200*"")"
If the user enters the words into one text box, use the Split() function to
parse the words into an array, and loop through the array from LBound to
UBound to build up the filter string.