0
As an example, I have two queries in Access. The first outputs two columns:
| Cust ID | Revenue 1 |
| A | 5 |
| B | 10 |
The second query is similar:
| Cust ID | Revenue 2 |
| B | 8 |
| C | 9 |
I want to create a query that will combine these first two queries:
| Cust ID | Revenue 1 | Revenue 2 |
| A | 5 | 0 |
| B | 10 | 8 |
| C | 0 | 9 |
But because A is not in the second query, and C is not in the first, this is the result I'm getting:
| Cust ID | Revenue 1 | Revenue 2 |
| B | 10 | 8 |
I have a master table of all Cust IDs that exist. How can I write a query that will enter 0 for any value not found (in this case, 0 for A,Rev 2 and C, Rev 1)?