Hi, I have the following sql which works fine in a stored query but i'm not sure how to get the result into a report control (txt box)
i've tried putting the sql into the control source for the text box and also tried running it in the vba window but keep getting a zero answer. i'm now stumped!
Any help much appreciated.
jimlad
Code:
SELECT Count(*) AS Result
FROM tblClassActionData INNER JOIN tblActiveClients ON tblClassActionData.ID = tblActiveClients.Identification
WHERE (((tblClassActionData.ClaimDate)<#4/28/2005#));
i've tried putting the sql into the control source for the text box and also tried running it in the vba window but keep getting a zero answer. i'm now stumped!
Any help much appreciated.
jimlad