I have a form, frm_Metrix, that I use to tract the number of Reports generated per month. The RecordSource of the form is the query qry_Metrix. Here is the sequel for that.
SELECT Count(*) AS NoOfReport, Year([Date Initiated]) AS [Year Initiated], Month([Date Initiated]) AS [Month Initiated]
FROM tbl_Report
GROUP BY Year([Date Initiated]), Month([Date Initiated]), tbl_Report.Status
HAVING (((tbl_Report.Status)="open"));
This works great. I have a form where I see the number of Reports per month/year in the text box txt_Metrix. txt_Metrix is located in the Detail section of the form. Is it possible to click this text box, txt_Metrix, and just view all the Open Reports for that month?
SELECT Count(*) AS NoOfReport, Year([Date Initiated]) AS [Year Initiated], Month([Date Initiated]) AS [Month Initiated]
FROM tbl_Report
GROUP BY Year([Date Initiated]), Month([Date Initiated]), tbl_Report.Status
HAVING (((tbl_Report.Status)="open"));
This works great. I have a form where I see the number of Reports per month/year in the text box txt_Metrix. txt_Metrix is located in the Detail section of the form. Is it possible to click this text box, txt_Metrix, and just view all the Open Reports for that month?