Hi
I have the following query:
SELECT Ethnicity, Count(Ethnicity) as Total
FROM qryEth
GROUP BY Ethnicity;
How can i deal with null values? The combo box contains 15 items and i only want to show those that are not null. The output from this query =
0
White 10
Mixed 2
I want to get rid of the blank field and the 0 for producing a tabular report. I have looked at the NZ function and IIF but the results could show different ethnic origins each time.
Can anyone help?
Thanks
Lou
I have the following query:
SELECT Ethnicity, Count(Ethnicity) as Total
FROM qryEth
GROUP BY Ethnicity;
How can i deal with null values? The combo box contains 15 items and i only want to show those that are not null. The output from this query =
0
White 10
Mixed 2
I want to get rid of the blank field and the 0 for producing a tabular report. I have looked at the NZ function and IIF but the results could show different ethnic origins each time.
Can anyone help?
Thanks
Lou