Need some formula help. Need a formula to account for this:
Needs to find any word in the cell that contains "at"
So it would find
At
Cat blah
attach
but not
Art
Amout
Solved! Go to Solution.
This ...
Contains([field],"at")
... will return true or false for you.
Try to use the filter tool. Contains([field name],"at")
Hope this helps!
Thx