S
Scottie
I have the following Query:
SELECT IIf(Count(*) Is Null,0,Count(*)) AS [No longer in Facility]
FROM Residents
GROUP BY Residents.[Last Status Date]
HAVING (((Residents.[Last Status Date]) Between [Forms]![Open_PIP
Report]![DateStart] And [Forms]![Open_PIP Report]![DateEnd]));
The query is still returning a null value. Many of the other queries in my
project require this to be at least a zero value to calculate properly. I
have tried using the NZ function also. Perhaps I am using it
incorrectly....any ideas?
SELECT IIf(Count(*) Is Null,0,Count(*)) AS [No longer in Facility]
FROM Residents
GROUP BY Residents.[Last Status Date]
HAVING (((Residents.[Last Status Date]) Between [Forms]![Open_PIP
Report]![DateStart] And [Forms]![Open_PIP Report]![DateEnd]));
The query is still returning a null value. Many of the other queries in my
project require this to be at least a zero value to calculate properly. I
have tried using the NZ function also. Perhaps I am using it
incorrectly....any ideas?