A
arran1180
I have two queries i am trying to combine, Each query has two columns, date
(unique) and a cash value.
I am trying to get a single query that will display all the dates in one
column, and then the corresponding cash values for that date from query 1
and query2.
so far, so simple! Howver, some dates may occur in qry 1 but not in qry 2,
and some other dates may occur in qry 2 but not qry 1 - and it is essential
my resultant qry makes a row for every date used, regardless if it is in qry
1 or qry 2!
I've tried simple joins, but of course it will always miss dates from one of
the two queries!
eg
qry 1 may contain:
1st Nov 50
2nd Nov 10
qry 2 may contain
1st Nov 800
3rd nov 100
4th nov 550
and i am trying to get: -
Date / qry 1 / qry 2
1st Nov / 50 / 800
2nd nov / 10 / 0
3rd Nov / 0/ 100
4th nov / 0 / 550
any ideas? i seem to be making something simple very complicated!!
(unique) and a cash value.
I am trying to get a single query that will display all the dates in one
column, and then the corresponding cash values for that date from query 1
and query2.
so far, so simple! Howver, some dates may occur in qry 1 but not in qry 2,
and some other dates may occur in qry 2 but not qry 1 - and it is essential
my resultant qry makes a row for every date used, regardless if it is in qry
1 or qry 2!
I've tried simple joins, but of course it will always miss dates from one of
the two queries!
eg
qry 1 may contain:
1st Nov 50
2nd Nov 10
qry 2 may contain
1st Nov 800
3rd nov 100
4th nov 550
and i am trying to get: -
Date / qry 1 / qry 2
1st Nov / 50 / 800
2nd nov / 10 / 0
3rd Nov / 0/ 100
4th nov / 0 / 550
any ideas? i seem to be making something simple very complicated!!