I have thousands of rows of subject titles. I only want those contain, say "cat", in the titles. The text input has a search parameter embedded. The list table as the following advanced filter:
( UpCase('SBJCT_TITLE'n) Contains UpCase(Concatenate(
Concatenate(' ', 'Search'p), ' ')) ) OR ( UpCase(Substring(
'SBJCT_TITLE'n, 1, GetLength('Search'p))) = UpCase(
'Search'p) ) OR ( UpCase('SBJCT_TITLE'n) EndsWith UpCase
(Concatenate(' ', 'Search'p)) )
The red is for words in the middle, the green for words at the start of the title and the blue for words at the back. However, as you can see in the below picture, it is not what i expected exactly. Titles with "cat" do show up, but words like "catherine" and "catcher" also shows up. Also, the above formula is not perfect as well; what if the title has "cats", instead of "cat"? Any help is appreciated.
... View more