Hi,
My initial query is a make table to store results
SELECT Count(*) AS AllCount, Round(Count*0.999) AS ReportCount, Avg([1RawJitter].[Jitter]) AS AllAvg, 0 AS ReportAvg INTO 2RptJitter
FROM [1RawJitter];
Then I want to do a SELECT TOP (2Jitter.ReportAvg) type query to update...