I have a table for storing client complaints. The structure of the table is:
tbl_Complaints
ComplaintID <autonumber>
InitiatedBy <text>
DateInitiated <date>
Complaint <Memo>
Every month, I need to make a report on the number of complaints received per month. How do I qeury that from the table?
tbl_Complaints
ComplaintID <autonumber>
InitiatedBy <text>
DateInitiated <date>
Complaint <Memo>
Every month, I need to make a report on the number of complaints received per month. How do I qeury that from the table?