G
Golfinray
SELECT [001_all payment Tracking].[New Project ID], [001_all payment
Tracking].[Payment Dates], [001_all payment Tracking].[Cumulative Payments],
[0001_all payment min and max dates].Mindate, [0001_all payment min and max
dates].maxdate
FROM [001_all payment Tracking] INNER JOIN [0001_all payment min and max
dates] ON [001_all payment Tracking].[New Project ID] = [0001_all payment min
and max dates].[New Project ID];
This query give me all project numbers, payment dates, first payment dat,
last payment date. Here is what it looks like now.
0607-1100-001 10/01/2007 $30,000 10/01/2007 1/6/2008
0607-1100-001 11/4/2007 $52,560 10/01/2007 1/6/2008
0607-1100-001 12/8/2007 $48,380 10/01/2007 1/6/2008
It is giving me the 3 payments made on the project. What I want is just ONE
project number with the first payment date (mindate) and last payment date
(maxdate) and a total of the payments. I'm just not having any luck. Thanks
so much.
Tracking].[Payment Dates], [001_all payment Tracking].[Cumulative Payments],
[0001_all payment min and max dates].Mindate, [0001_all payment min and max
dates].maxdate
FROM [001_all payment Tracking] INNER JOIN [0001_all payment min and max
dates] ON [001_all payment Tracking].[New Project ID] = [0001_all payment min
and max dates].[New Project ID];
This query give me all project numbers, payment dates, first payment dat,
last payment date. Here is what it looks like now.
0607-1100-001 10/01/2007 $30,000 10/01/2007 1/6/2008
0607-1100-001 11/4/2007 $52,560 10/01/2007 1/6/2008
0607-1100-001 12/8/2007 $48,380 10/01/2007 1/6/2008
It is giving me the 3 payments made on the project. What I want is just ONE
project number with the first payment date (mindate) and last payment date
(maxdate) and a total of the payments. I'm just not having any luck. Thanks
so much.