Gustav Brock
Gustav at cactus.dk
Wed Feb 14 05:35:47 CST 2007
Hi Lonnie You could, in a query, have three expressions: CountA: Abs(Instr(Field1, "AAA") > 0) CountB: Abs(Instr(Field1, "BBB") > 0) CountC: Abs(Instr(Field1, "CCC") > 0) and then find the three sums of CountA to CountC. /gustav >>> prodevmg at yahoo.com 14-02-2007 12:18:25 >>> I have a field that is horribly constructed. It looks like so... RECORDID FIELD1 1 AAA, BBB 2 BBB 3 AAA, BBB, CCC 4 BBB, CCC 5 AAA, CCC 6 CCC, BBB Is there a quick way to count all the AAA's and all the BBB's without reconstructing (normalizing) the table? This would entail redoing their input forms and reports. Time is of the essence. Thanks.