houstonbill
Technical User
- Nov 6, 2006
- 92
Looking for help on the best way to accomplish combining multiple queries with the same type of data that will be give me single lists of that data. Basd on how the data is dumped to the table (by the CCN #), I have had to break up the data in queries. Below is an example of the SQL of the 1st of those queries. There are 8 more identical to it except that the FEX, FDT and FCD increase in value (FEX4, FEX5, FEX6, etc, and the same for the FDT and FCD entries). I want to buid a single query for a report with a format as shown in the sxample below the SQL. The Fex entry, regardless of number, is the clerk who handled the CCN and I will short by clerk. I want anything a certain clerk done to be listed below their number. Can this be done?
SELECT CCSClosed.FEX3, CCSClosed.FDT3, CCSClosed.FCD3, CCSClosed.CCN, CCSClosed.SUBNOFUL, CCSClosed.GROUPNO, CCSClosed.ICN
FROM CCSClosed
WHERE (((CCSClosed.TYPECD)="RO" Or (CCSClosed.TYPECD)="TW" Or (CCSClosed.TYPECD)="nx") AND ((CCSClosed.REG)="042" Or (CCSClosed.REG)="045"))
GROUP BY CCSClosed.FEX3, CCSClosed.FDT3, CCSClosed.FCD3, CCSClosed.CCN, CCSClosed.SUBNOFUL, CCSClosed.GROUPNO, CCSClosed.ICN
HAVING (((CCSClosed.FDT3)>=#8/1/2007#) AND ((CCSClosed.FCD3)="ACL" Or (CCSClosed.FCD3)="RET"));
REPORT SAMPLE
FEX FDT FCD SUBNOFUL CCN GROUP ICN
5847 08/15/07 ACL 02071920 596100284 76415 7262511
08/17/07 RET 12344689 123456789 98753 1234456
08/20/07 ACL 22233344 012345612 31235 2223334
SELECT CCSClosed.FEX3, CCSClosed.FDT3, CCSClosed.FCD3, CCSClosed.CCN, CCSClosed.SUBNOFUL, CCSClosed.GROUPNO, CCSClosed.ICN
FROM CCSClosed
WHERE (((CCSClosed.TYPECD)="RO" Or (CCSClosed.TYPECD)="TW" Or (CCSClosed.TYPECD)="nx") AND ((CCSClosed.REG)="042" Or (CCSClosed.REG)="045"))
GROUP BY CCSClosed.FEX3, CCSClosed.FDT3, CCSClosed.FCD3, CCSClosed.CCN, CCSClosed.SUBNOFUL, CCSClosed.GROUPNO, CCSClosed.ICN
HAVING (((CCSClosed.FDT3)>=#8/1/2007#) AND ((CCSClosed.FCD3)="ACL" Or (CCSClosed.FCD3)="RET"));
REPORT SAMPLE
FEX FDT FCD SUBNOFUL CCN GROUP ICN
5847 08/15/07 ACL 02071920 596100284 76415 7262511
08/17/07 RET 12344689 123456789 98753 1234456
08/20/07 ACL 22233344 012345612 31235 2223334