I had updated the database to include a new column 'AgentName' and ran the query;
SELECT CLAvgQuery.[Certified Listeners Name] AS Expr1, CLAvgQuery.[AvgOfDid the CL give Feedback in a Timely Manner1] AS Expr2, FeedbackSessionTotalsQuery.[Avg Of Did the CL give Feedback in a Timely Manner] AS Expr3, FeedbackSessionTable1.[Did the CL give Feedback in a Timely Manner] AS Expr4, FeedbackSessionTable1.[Did the CL make you feel comfortable during the observation?] AS Expr5, FeedbackSessionTable1.[Did the CL accurately describe the performance adjustments?] AS Expr7, FeedbackSessionTable1.[Did the CL provide feedback in a professional manner?] AS Expr8, FeedbackSessionTable1.[Did the CL provide assistance in redirecting the issue or action] AS Expr9, FeedbackSessionTable1.AgentName AS Expr10, FeedbackSessionTable1.Date AS Expr11
FROM CLAvgQuery, FeedbackSessionTotalsQuery, FeedbackSessionTable1
GROUP BY CLAvgQuery.[Certified Listeners Name], CLAvgQuery.[AvgOfDid the CL give Feedback in a Timely Manner1], FeedbackSessionTotalsQuery.[Avg Of Did the CL give Feedback in a Timely Manner], FeedbackSessionTable1.[Did the CL give Feedback in a Timely Manner], FeedbackSessionTable1.[Did the CL make you feel comfortable during the observation?], FeedbackSessionTable1.[Did the CL accurately describe the performance adjustments?], FeedbackSessionTable1.[Did the CL provide feedback in a professional manner?], FeedbackSessionTable1.[Did the CL provide assistance in redirecting the issue or action], FeedbackSessionTable1.AgentName, FeedbackSessionTable1.Date, FeedbackSessionTable1.[Did the CL make you feel comfortable during the feedback session];
which led to:
Query must have at least one destination field
CoachPhil