J
Julian
Hi, this is my first posting to this group as I have a very strange
problem in Access 2002. I have a query which combines 2 linked tables
with a one to one join. This query works fine, now when I write a
further query which includes the first query and has two fields with
equal to criteria i.e. dateTo = #3/1/2001# and SiteType="P" I get no
records showing up, yet when I set the criteria to dateTo=#3/1/2001# and
leave off the Sitetype criteria, I get a bunch of records returned which
have a SiteType of "P" !!!!!
When I use a filter by form with the same criteria, the filter returns
the records !! How can I get this query to work correctly?
this query will return records with a siteType of P( as that is what is
in the table for that date.)
SELECT RevQRes.* FROM RevQRes WHERE ((RevQRes.To)=#4/1/2002#);
However this query returns no records !!
SELECT RevQRes.* FROM RevQRes WHERE (((RevQRes.To)=#4/1/2002#) AND
((RevQRes.SiteT)="P"));
RevQRes is a query based on 2 linked access tables(backend)
Please does anyone know of this being a problem in access?
problem in Access 2002. I have a query which combines 2 linked tables
with a one to one join. This query works fine, now when I write a
further query which includes the first query and has two fields with
equal to criteria i.e. dateTo = #3/1/2001# and SiteType="P" I get no
records showing up, yet when I set the criteria to dateTo=#3/1/2001# and
leave off the Sitetype criteria, I get a bunch of records returned which
have a SiteType of "P" !!!!!
When I use a filter by form with the same criteria, the filter returns
the records !! How can I get this query to work correctly?
this query will return records with a siteType of P( as that is what is
in the table for that date.)
SELECT RevQRes.* FROM RevQRes WHERE ((RevQRes.To)=#4/1/2002#);
However this query returns no records !!
SELECT RevQRes.* FROM RevQRes WHERE (((RevQRes.To)=#4/1/2002#) AND
((RevQRes.SiteT)="P"));
RevQRes is a query based on 2 linked access tables(backend)
Please does anyone know of this being a problem in access?