Graham T
Registered User.
- Local time
- Today, 23:35
- Joined
- Mar 14, 2001
- Messages
- 300
I have the following SQL statement that gives me a count of reviews:
I would like to display something along the lines of "There are "X" amount of reviews for this title" - where "X" is equal to the result of the SQL Statement.
The text box/label will be present on the form and the count should return the result of the current book ISBN.
Would these need to be placed in the On_Current event of the form, if it is possible.
TIA
Graham
Code:
SELECT Count(tblReviews.lngReviewID) AS CountOflngReviewID
FROM tblReviews
GROUP BY tblReviews.strISBN_Number
HAVING ((tblReviews.strISBN_Number)=[Forms]![frmLINK_Book_Author]![strISBN_Number]));
I would like to display something along the lines of "There are "X" amount of reviews for this title" - where "X" is equal to the result of the SQL Statement.
The text box/label will be present on the form and the count should return the result of the current book ISBN.
Would these need to be placed in the On_Current event of the form, if it is possible.
TIA
Graham