F
FJB
It's me again. Thanks now for your help.
I am trying to create a query which will allow us to determine the
number of filings during a specified period of time (usually monthly).
I would like to be able to view a summary by investigator and group
rather than the individual records.
Investigator 1 is a part of Group A; investigator 2 is also a part of
Group A, but investigator 3 is part of Group B.
I would like to see the following:
Investigator 1 3
Investigator 2 5
Group A 8
Below is the SQL view of the query as it now is constructed.
SELECT [SAR Filings].[FIU Investigator], [SAR Filings].[SAR Filed
Date], [SAR Filings].[Relationship Name], [Investigator-Group
Table].Group
FROM [SAR Filings] INNER JOIN [Investigator-Group Table] ON [SAR
Filings].[FIU Investigator] = [Investigator-Group Table].Investigator
GROUP BY [SAR Filings].[FIU Investigator], [SAR Filings].[SAR Filed
Date], [SAR Filings].[Relationship Name], [Investigator-Group
Table].Group
HAVING ((([SAR Filings].[SAR Filed Date]) Between [Start Date] And [End
Date]))
ORDER BY [Investigator-Group Table].Group;
I am trying to create a query which will allow us to determine the
number of filings during a specified period of time (usually monthly).
I would like to be able to view a summary by investigator and group
rather than the individual records.
Investigator 1 is a part of Group A; investigator 2 is also a part of
Group A, but investigator 3 is part of Group B.
I would like to see the following:
Investigator 1 3
Investigator 2 5
Group A 8
Below is the SQL view of the query as it now is constructed.
SELECT [SAR Filings].[FIU Investigator], [SAR Filings].[SAR Filed
Date], [SAR Filings].[Relationship Name], [Investigator-Group
Table].Group
FROM [SAR Filings] INNER JOIN [Investigator-Group Table] ON [SAR
Filings].[FIU Investigator] = [Investigator-Group Table].Investigator
GROUP BY [SAR Filings].[FIU Investigator], [SAR Filings].[SAR Filed
Date], [SAR Filings].[Relationship Name], [Investigator-Group
Table].Group
HAVING ((([SAR Filings].[SAR Filed Date]) Between [Start Date] And [End
Date]))
ORDER BY [Investigator-Group Table].Group;