I have two queries that I am trying to combine:
However, this is the best I can get:
Since Item2, Item3, and Item4 are not in both queries they are not in the end result. How can I combine these two queries and not lose values that are only in one query?
Thanks,
Patrick
Code:
[u]Qry1[/u]
Month ItemName Quantity
04-01 Item1 10
04-02 Item4 12
[u]Qry2[/u]
Month ItemName Quantity
04-01 Item1 75
04-02 Item2 4
04-02 Item3 8
However, this is the best I can get:
Code:
[u]Combined Query[/u]
Month ItemName Quantity1 Quantity2
4-01 Item1 10 78
Since Item2, Item3, and Item4 are not in both queries they are not in the end result. How can I combine these two queries and not lose values that are only in one query?
Thanks,
Patrick