G
Guest
I already tried to tweak many of the examples of running some on this group
without success. Hopping someone will be able to help me. Here is my problem.
I created a performance query that calculates the number of days between the
Open date and close date of request (CAR). Now I would like to add a running
sum on the number of days.
Here is my current SQL:
SELECT CAR.Type, DateDiff("d",[DateIn],[ClosedDate]) AS
NumberOfDaysOpenBeforeClose, CAR.DateIn, CAR.ClosedDate, CAR.DueDate
FROM CAR
WHERE (((CAR.Type) Like "*Drawing*Change*") AND (Not (CAR.ClosedDate) Is
Null And (CAR.ClosedDate)<#1/1/2006#));
Any ideas? Help will be very appreciated.
Yanick
without success. Hopping someone will be able to help me. Here is my problem.
I created a performance query that calculates the number of days between the
Open date and close date of request (CAR). Now I would like to add a running
sum on the number of days.
Here is my current SQL:
SELECT CAR.Type, DateDiff("d",[DateIn],[ClosedDate]) AS
NumberOfDaysOpenBeforeClose, CAR.DateIn, CAR.ClosedDate, CAR.DueDate
FROM CAR
WHERE (((CAR.Type) Like "*Drawing*Change*") AND (Not (CAR.ClosedDate) Is
Null And (CAR.ClosedDate)<#1/1/2006#));
Any ideas? Help will be very appreciated.
Yanick