K
Kristibaer
I am creating a query and have a field that contains some null (blank)
values. I need a criteria code to populate the null/blank values with a
value (probably 1) so I can use the Count function to tell me how many of
these items have this blank field. Here is the SQL code I have. For this
example, I know that there are 9 records with null values for the serialno
field.
SELECT imserial.item, Count(imserial.serialno) AS CountOfserialno
FROM imserial
GROUP BY imserial.item
HAVING (((imserial.item) Like "B5G"));
Thank you,
Kristi
values. I need a criteria code to populate the null/blank values with a
value (probably 1) so I can use the Count function to tell me how many of
these items have this blank field. Here is the SQL code I have. For this
example, I know that there are 9 records with null values for the serialno
field.
SELECT imserial.item, Count(imserial.serialno) AS CountOfserialno
FROM imserial
GROUP BY imserial.item
HAVING (((imserial.item) Like "B5G"));
Thank you,
Kristi