Greetings one and all,
I realize this should be an easy query, but for some reason I'm having trouble. If possible I would like to use the query expression builder to make the query.
My goal is to display the total of all of the fruit in the second table even if it's value is null. For example
If Tables 1 and 2 look like this....
Table1
ID Fruit
1 Apple2 Orange
3 Pear
4 Lime
5 Pineapple
Table 2
ID Fruit List
1 Apple
2 Apple
3 Apple
4 Orange
5 Orange
6 Lime
.... I want the query output to look like this
Apple 3
Orange 2
Pear 0
Lime 1
Pineapple 0
I can easily get make the query display the correct values for the Apple, Orange, and Lime. However, it's not working for the Pear, or Pineapple.
Any suggestions?