Hi,
I've been working on Access databases for a while, and I can adapt very well to the program to solve many issues... thus I have been creating bespoke databases for companies. Since switching to MS Office 2007 and 2010, I have had nothing but problems.
New problem: ERROR 3071 (Expression to complex)
Erm... I don't think so, its only 950 character long.
I can rectify this simply by removing the Order By paramters. As soon as I add them again, same error. Can anybody help me with this? I've tried creating completly new queries and everything, nothing seems to work.
Thanks,
Jim.
I've been working on Access databases for a while, and I can adapt very well to the program to solve many issues... thus I have been creating bespoke databases for companies. Since switching to MS Office 2007 and 2010, I have had nothing but problems.
New problem: ERROR 3071 (Expression to complex)
Erm... I don't think so, its only 950 character long.
Code:
SELECT [Patient Info].Surname, [Patient Info].Forename, [Patient Info].Title, [Patient Info].[Address 1], [Patient Info].[Address 2], [Patient Info].[Town/City], [Patient Info].County, [Patient Info].[Post Code], [Patient Info].[Next Eye Exam], [Patient Info].[Email Reminders], [Patient Info].[Last Eye Exam], [Patient Info].[Date of Birth]
FROM [Patient Info]
WHERE ((([Patient Info].[Next Eye Exam]) Between [Enter Earliest Date] And [Enter Latest Date]))
ORDER BY [Patient Info].Surname, [Patient Info].Forename;
Thanks,
Jim.