-----Original Message-----
i'm so sorry i worded that so poorly now that i reread
it. okay, here's what i'm doing... i'm comparing dollars
on resources. the dollars in one table (table 1) are the
prime bottom line dollars. the dollars in the other table
(table 2) are all of the overhead costs associated with
the resource and dollars in table 1. so, i could have a
resource that has no overhead cost, but i won't have
overhead costs wihtout a resource. hence the outer join
on the resource field.
here's where it gets fun... each resource is associated
with a date in time, a project and an account within that
project. all of those fields could have an inner join on
them, but access gives me an error message if i have both
types of joins in the query. then there's problem is the
amount of time it takes to process all of the data
(millions of records).
i hope that makes more sense about what i'm trying to do.
i'm gonna try your suggestion too because it sounds like
that may work very well.
i really appreciate your help.
happy holidays!!
Jessica
-----Original Message-----
I don't understand.
A given query can have a Join between two tables on up
to
ten fields.
That join can be either an inner join or an outer join.
It can't be an inner join on some fields, and an outer join on some
other fields!
You can use an Inner Join on the four fields, and a criterion such as
=Table1.[A] OR IS NULL
on Table2.A in order to select only records which either match or have
no value in field A; but if you need an inner join on other fields,
then you must have a record in Table2.
Could you give an example of the kind of data you're dealing with, and
what results you would like to see?
.
.