Jul 14, 2010 #1 zenzabar Technical User Jan 24, 2007 24 US Using Crystal XI I need to exclude any instance of records with TAB; thought a simple IF statement would work, but did not. My data to exclude looks like this: Zocor (25mg) TAB Synthroid (.01mg) TAB
Using Crystal XI I need to exclude any instance of records with TAB; thought a simple IF statement would work, but did not. My data to exclude looks like this: Zocor (25mg) TAB Synthroid (.01mg) TAB
Jul 14, 2010 #2 Turkbear Technical User Mar 22, 2002 8,631 US Hi, In your record selection formula try this: NOT ({Table.Field} like *TAB*) To Paraphrase:"The Help you get is proportional to the Help you give.." Upvote 0 Downvote
Hi, In your record selection formula try this: NOT ({Table.Field} like *TAB*) To Paraphrase:"The Help you get is proportional to the Help you give.."
Jul 14, 2010 #3 lbass Technical User Feb 9, 2002 32,816 US Just a tweak: NOT ({Table.Field} like "*TAB*") If "TAB" could be in other cases, use: not(ucase({table.field}) like "*TAB*") -LB Upvote 0 Downvote
Just a tweak: NOT ({Table.Field} like "*TAB*") If "TAB" could be in other cases, use: not(ucase({table.field}) like "*TAB*") -LB