I have a number of queries which when referenced through my report and conditions match work fine.
e.g.
SELECT Count([Patient Stats].[Anaesthesia Lip]) AS [CountOfAnaesthesia Lip]
FROM [Patient Stats]
WHERE ((([Patient Stats].Date) Between [Start Date] And [End Date]))
GROUP BY [Patient Stats].[Anaesthesia Lip]
HAVING ((([Patient Stats].[Anaesthesia Lip])="Permanent"));
But if there are no records between a specific date ranging matching the value of "CountofAnaesthesia Lip" returned, I am presuming, is Null.
This means that all queries show up as blank on my form, unless
all match criteria between a specific date range.
Please, does anyone feel like enlightening me?
Thanks in Advance
Chris Dalton
e.g.
SELECT Count([Patient Stats].[Anaesthesia Lip]) AS [CountOfAnaesthesia Lip]
FROM [Patient Stats]
WHERE ((([Patient Stats].Date) Between [Start Date] And [End Date]))
GROUP BY [Patient Stats].[Anaesthesia Lip]
HAVING ((([Patient Stats].[Anaesthesia Lip])="Permanent"));
But if there are no records between a specific date ranging matching the value of "CountofAnaesthesia Lip" returned, I am presuming, is Null.
This means that all queries show up as blank on my form, unless
all match criteria between a specific date range.
Please, does anyone feel like enlightening me?
Thanks in Advance
Chris Dalton