June 12, 200322 yr I'm trying to create a calculation field using FM5.5 that will return one of two values based on the value of another field. The art department requests ink samples from the ink lab and assigns the ink a temporary formula name of "TBD1234". Once the ink lab formulates the ink, the formula name is updated and the "TBD" portion is removed. I'm trying to create a calc field like so: If(Formula Field = "TBD"*, "FORMULATE", "COMPLETED") Unfortunately the asterisk character doesn't return anything. Is this possible?
June 12, 200322 yr Hi Dan and Erik, I didn't have any luck structuring the If Statement, but this Case works. Case(PatternCount(Formula Field, "TBA"), "FORMULATE", "COMPLETED") HTH Lee
Create an account or sign in to comment