I am trying to create a chart based on the 2 pieces of data.
I have a standard capacity of 15000 and fluxuating counts. I want this sorted by day. Here is my query...but doesn't work right??
SELECT Sum((Day([IMP]))) AS [Impression Count], 15000 AS Capcity, MASTER.Cust_Date
FROM MASTER
GROUP BY 15000, MASTER.Cust_Date;
What am I missing with the IMP side?
I have a standard capacity of 15000 and fluxuating counts. I want this sorted by day. Here is my query...but doesn't work right??
SELECT Sum((Day([IMP]))) AS [Impression Count], 15000 AS Capcity, MASTER.Cust_Date
FROM MASTER
GROUP BY 15000, MASTER.Cust_Date;
What am I missing with the IMP side?