The UPDATE query below interprets qry_Breakd_DYFYHAS_CountRecsDateRange.CountRecords_InDateRange to be a parameter and asks for a parameter value.
The qry_Breakd_DYFYHAS_CountRecsDateRange query works, and gives the number: 8.
Contents of Update query:
UPDATE tbl_total_listenings_calcs
SET tbl_total_listenings_calcs.Total_listenings_tbl_Data_DateRange = qry_Breakd_DYFYHAS_CountRecsDateRange.CountRecords_InDateRange;
Contents of "qry_Breakd_DYFYHAS_CountRecsDateRange" query:
SELECT count(*) AS CountRecords_InDateRange
FROM tbl_Data, tbl_DateFromTo
WHERE (((tbl_Data.Date_Listening) Between tbl_DateFromTo.Date_From And tbl_DateFromTo.Date_To));
Seeking advice and suggestions on what to change in the two queries as applicable to get the update query working.