lainey
03-19-2002, 11:18 PM
my table contains informationon faults of a product for each month and it has an issue date, i want to set up a report to show the number of fault within a particular month but i am not that sure how to set this up
|
View Full Version : monthly report??? lainey 03-19-2002, 11:18 PM my table contains informationon faults of a product for each month and it has an issue date, i want to set up a report to show the number of fault within a particular month but i am not that sure how to set this up Harry 03-20-2002, 01:10 AM Create a query showing the fields that you need for the report. Then create a new field called Mnth: Format([YourDateField],"mm/yy") Then make the query a Totals query and group by Mnth. You can now use this query as the feed for the report HTH lainey 03-20-2002, 01:36 AM i have tried doing this but the report still wont show me data between two specific dates, is there any criteria that i need to set the query or report? ColinEssex 03-20-2002, 02:50 AM Hi You could create a query to feed the report and in the issue date field criteria type- Between [Enter start date] and [Enter end date] This will run the query between the dates you type in. Col lainey 03-20-2002, 02:53 AM yes it works!!!!! thanks lainey http://www.access-programmers.co.uk/ubb/smile.gif [This message has been edited by lainey (edited 03-20-2002).] |