I have two tables as lookups. I use a third table to enter information with lookups to each table. I need to create a query which includes non-blank lines.
i.e.
Table 1
Code Description
1000 Sales
2000 Purchases
3000 Costs
etc.
Table 2
Ref Name
SOUTH Souhtern Division
NORTH Northern Division
EAST Eastern Division
etc.
Table 3
Code Ref Amount
1000 SOUTH 1000
2000 SOUTH 200
1000 NORTH 500
etc.
If I create based on Table 3 I get the names of all code/ref combinations with a value, however I want to include blank rows as well. How can I acheive this?
i.e.
Table 1
Code Description
1000 Sales
2000 Purchases
3000 Costs
etc.
Table 2
Ref Name
SOUTH Souhtern Division
NORTH Northern Division
EAST Eastern Division
etc.
Table 3
Code Ref Amount
1000 SOUTH 1000
2000 SOUTH 200
1000 NORTH 500
etc.
If I create based on Table 3 I get the names of all code/ref combinations with a value, however I want to include blank rows as well. How can I acheive this?