MeldrethMan
Technical User
I have a simple report based on this query
PARAMETERS [Enter Start Date] DateTime;
SELECT tblAllContacts.FirstName, tblAllContacts.Surname, tblAllContacts.[Record Created]
FROM tblAllContacts
WHERE (((tblAllContacts.[Record Created])>=[Enter Start Date]) AND ((tblAllContacts.Volunteer)=Yes))
ORDER BY tblAllContacts.Surname;
On creating the report this appears in Order By and reappears even if deleted and the report saved.
[tblAllContacts].[Staff], [tblAllContacts].[Surname], [tblAllContacts].[StaffID], [tblAllContacts].[ContactID]
When running the report it asks for these four parameters. Why?
I don't get these requests when just running the query. In case there's something lurking in the report I've tried creating a totally new one but the same happens.