The COUNT function is an Aggregate Function that you would use in an Aggregate (Totals) Query. If you are just trying to count the number for a single record, you could use a series of IIF functions (returning a 1 or 0) and adding them together, or just use boolean logic which return a -1 for True and 0 for False, then use the ABS (absolute value) function to make the negative positive, i.e.
Code:
5RequiredRegents: Abs(([ENG REG]>=65) + ([GLOBAL REG]>=65) + ([US HIST REG]>=65) + (([LIVING ENV REG]>=65) Or ([EARTH SCI REG]>=65) Or ([CHEMISTRY REG]>=65) Or ([PHYSICS REG]>=65)) + (([ALGEBRA REG]>=65) Or ([GEOMETRY REG]>=65) Or ([Trig REG]>=65)))