Hello Susan:
Use FIND("PRICE", UPPER({OELine Description}), 1) > 0
This means find the first place where "PRICE" occurs in the Description and return the position in the Description.
For instance:
-If the Description is "PRICE DISCOUNT", FIND() = 1
-If the Description is "NEW PRICE DISCOUNT", FIND() = 5
-If the Description is "NEW DISCOUNT", FIND() = 0