Ok, so, we have one major "Files" table where most of the data resides. There are fields on this table to identify which user has processed what piece of each file. Currently, there are separate reports to track who has processed how many of each piece of the files. A manager wants a report that shows how much of each piece of the file a specified user has processed for a specified date range. The current configuration is that there is a query with a where clause that is connected to a form where the user can input a date range and it returns all records with a count for each employee for those types of pieces of file. I need to be able to make a form that will pull all three types of data from the one table, by specifying a username and date range. I've spent several weeks on this and frankly my brain hurts and I'm sure it's something extremely simple!
Here's a select statement I wrote to try to simplify what I need to do for myself:
Select EnteredBy, DateReceived, ProcessedBy1, Received1, ProcessedBy2, Received2 from Files where EnteredBy, ProcessedBy1, ProcessedBy2 = [criteria specified in unbound field] and DateReceived is between [dates specified on unbound field]
Any help would be greatly appreciated.
Thanks! =)
Here's a select statement I wrote to try to simplify what I need to do for myself:
Select EnteredBy, DateReceived, ProcessedBy1, Received1, ProcessedBy2, Received2 from Files where EnteredBy, ProcessedBy1, ProcessedBy2 = [criteria specified in unbound field] and DateReceived is between [dates specified on unbound field]
Any help would be greatly appreciated.
Thanks! =)