Modify [Table1 Query Query] to do Count and Avg aggregation.
SELECT Sum([Table1 Query].TotalSecs) AS SumSecs, Count([Table1 Query].[TotalSecs]) AS CountRecs, Avg([TotalSecs]) AS AvgSecs FROM [Table1 Query];
I expect your actual data will have some fields for a ParticipantID or TrialID and the aggregate query will need a GROUP BY clause. How these queries should be modified depends on your actual data structure. Do some research on building aggregate queries.