May 11, 200520 yr Is there a way to do an IF function that says if text field X CONTAINS the phrase "blah blah blah", then value Y? Thanks, Jeff
May 11, 200520 yr Sure... Case ( PatternCount ( field X , "blah blah blah" ) , "value Y" ) You could use the If function, but Case is quicker. J
Create an account or sign in to comment