hi,
is there any way to do a query, which would read two tables/queries like
table1
date
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
table2
date amount
May 2005 500.00
June 2005 1,258.50
October 2005 247.00
and the output of that new query would be like:
new query
date amount
March 2005 0.00
April 2005 0.00
May 2005 500.00
June 2005 1,258.50
July 2005 0.00
August 2005 0.00
September 2005 0.00
October 2005 247.00
November 2005 0.00
is there any way to do a query, which would read two tables/queries like
table1
date
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
table2
date amount
May 2005 500.00
June 2005 1,258.50
October 2005 247.00
and the output of that new query would be like:
new query
date amount
March 2005 0.00
April 2005 0.00
May 2005 500.00
June 2005 1,258.50
July 2005 0.00
August 2005 0.00
September 2005 0.00
October 2005 247.00
November 2005 0.00