J
JoeC
sSARC Counts "Need a running Count"
1/12/2005 2 2
1/13/2005 2 4
1/14/2005 3 7
1/18/2005 2 9
1/20/2005 1 Ect.
The Sql Statement from the Query is:
SELECT Tbl_FunctionSiteAquisition.sSARC,
Count(Tbl_FunctionSiteAquisition.BechtelSiteID) AS CountOfBechtelSiteID
FROM Tbl_FunctionSiteAquisition
GROUP BY Tbl_FunctionSiteAquisition.sSARC
HAVING (((Tbl_FunctionSiteAquisition.sSARC) Is Not Null))
ORDER BY Tbl_FunctionSiteAquisition.sSARC;
Basiclly we have One Table Tbl_FunctionSiteAquisition.
We are showing only the records that have Dates populated.
The Dates are sorted by Ascending order and are grouped by the
BechtelSiteID to give me the Counts per that date.
The BechtelSiteID is the Primary Key.
I need to have a running total for plotting a Curve line in a Chart /
Graph (Base Line)
Thank to all the wizards for your help.
Ps. Go Red Soxs
1/12/2005 2 2
1/13/2005 2 4
1/14/2005 3 7
1/18/2005 2 9
1/20/2005 1 Ect.
The Sql Statement from the Query is:
SELECT Tbl_FunctionSiteAquisition.sSARC,
Count(Tbl_FunctionSiteAquisition.BechtelSiteID) AS CountOfBechtelSiteID
FROM Tbl_FunctionSiteAquisition
GROUP BY Tbl_FunctionSiteAquisition.sSARC
HAVING (((Tbl_FunctionSiteAquisition.sSARC) Is Not Null))
ORDER BY Tbl_FunctionSiteAquisition.sSARC;
Basiclly we have One Table Tbl_FunctionSiteAquisition.
We are showing only the records that have Dates populated.
The Dates are sorted by Ascending order and are grouped by the
BechtelSiteID to give me the Counts per that date.
The BechtelSiteID is the Primary Key.
I need to have a running total for plotting a Curve line in a Chart /
Graph (Base Line)
Thank to all the wizards for your help.
Ps. Go Red Soxs