Hi all:
I have a column of material description from my ERP system. I want to filter out those rows where one of several text strings could be present.
To make my live easy, I created a word_flag column, using the formula:
if [Prod_description]
in ("wordA","WordB","WordC"...)
then
1
else
0
endifHowever, this does not seem to work.
Am I even using the right tool?
-Tesh.