I'm using an Access DB as a backend for a classic asp web page. I'm creating a saved query that uses parameters. I'm testing in the query builder in Access 2000. The fields are all text, default value is NULL, zero length allowed for the [in_b]s, of which there are 9, named B160, B80, B40, B30 etc.My query is:\[code\] SELECT COUNT([in_b]) AS BCnt FROM tblScore WHERE UCALL=[in_call] and NOT ISNULL([in_b]);\[/code\]This returns a count of all rows for a given UCALL. If I change either of the 2[in_b] to the actual column name, the query gives me what I want (0 in this case), but then I'd have to run 9 querys.