T
Todd
I've got a query which calculates cycle times for a
process. Now I'm making a query to report the statistics
related to the cycletimes (ie max, min, and average cycle
times.). I would also like to include the statistics for
the last 10 events, so that I can compare the historical
data with the recent data to see if there is any
improvement.
Is there an easy way to do this?
Here is the SQL for my current query:
SELECT Count([Turnaround Tracking Query].BIN) AS NumData,
Avg([Turnaround Tracking Query].TotalCycleTime) AS
AvgTotalCycle, Min([Turnaround Tracking
Query].TotalCycleTime) AS MinTotalCycle, Max([Turnaround
Tracking Query].TotalCycleTime) AS MaxTotalCycle
FROM [Turnaround Tracking Query];
process. Now I'm making a query to report the statistics
related to the cycletimes (ie max, min, and average cycle
times.). I would also like to include the statistics for
the last 10 events, so that I can compare the historical
data with the recent data to see if there is any
improvement.
Is there an easy way to do this?
Here is the SQL for my current query:
SELECT Count([Turnaround Tracking Query].BIN) AS NumData,
Avg([Turnaround Tracking Query].TotalCycleTime) AS
AvgTotalCycle, Min([Turnaround Tracking
Query].TotalCycleTime) AS MinTotalCycle, Max([Turnaround
Tracking Query].TotalCycleTime) AS MaxTotalCycle
FROM [Turnaround Tracking Query];