Good morning.
I currently have the following filter that works well:
thisRow.Type.Contains([SpOut]) AND thisRow.Word.StartsWith(“e”).
However, upon review, I realized that it was NOT picking up words that started with a capitalized “E”.
My efforts to date have failed to produce the correct results as the filter should pick up words that begin with either an “e” or an “E”.
Any help would be appreciated.
TIA
thisRow.Type.Contains([SpOut]) AND thisRow.Word.Lower().StartsWith(“e”)
2 Likes
Thank you very much. I appreciate your help.
the standard trick to make your matching non-case-sensitive is to put everything into uppercase before doing the matching.
use the Upper() formula.
max
1 Like
system
Closed
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.
Actually, I would prefer to use ContainsText(), which has an ignore case option (and ignore accents if you need that too):
thisRow.Name.ContainsText(thisRow.Text,true)

1 Like