SELECT [REGISTER LOG].TYPE, [REGISTER LOG].BLOCK, [REGISTER LOG].[BLOCK
REALIGNED], [REGISTER LOG].RECORD, [REGISTER LOG].SCHOOL, [REGISTER
LOG].[COURSE CODE], [REGISTER LOG].[CLASS CODE], [REGISTER LOG].[UNIT CODE],
[REGISTER LOG].SOC, [REGISTER LOG].ISSUED, [REGISTER LOG].RETURNED, [REGISTER
LOG].FILED, [REGISTER LOG].CLEARUP, [REGISTER LOG].CANCELLED, [REGISTER
LOG].DUPLICATE
FROM [REGISTER LOG]
WHERE ((([REGISTER LOG].BLOCK)=[Enter Required Block]) AND (([REGISTER
LOG].SCHOOL) Like [Enter School] & "*"))
ORDER BY [REGISTER LOG].[COURSE CODE];
Jerry Whittle said:
You'll need to show us one of the queries that has this behavior. Open the
query in design view. Next go to View, SQL View and copy and past it here
Also are any forms involved?
--
Jerry Whittle, Microsoft Access MVP
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
:
I have created some queries that the user can use to search by adding certain
criteria. However after a few uses the users find that they are asked for the
same criteria twice before the query runs. Does anyone know the reason for
this?
Thanks.