I try to count the quantity of participants that have 'Yes' values for a field but no participants have 'Yes' so I try to return 0 (zero) instrad of a null value.
I tried to use the following Nz as described in some other posts but it doesn't seem to work for me
Here's my query:
Can someone help me with this ?
I tried to use the following Nz as described in some other posts but it doesn't seem to work for me
Here's my query:
Code:
SELECT DISTINCTROW Nz(Count(*),0) AS [Compte De Table_Inscriptions]
FROM Table_Inscriptions
GROUP BY Table_Inscriptions.J1_PetitDejeuner
HAVING (((Table_Inscriptions.J1_PetitDejeuner)=Yes));
Can someone help me with this ?