J
jgraves
Using Access 2003, I want to write a query against information in the
following sample format:
Manufacturer Item Number Source System
Acme A-1 GoodSoft
Acme A-1 BadSoft
Acme A-2 BadSoft
Acme A-2 ReallyBadSoft
BooInc. B-1 GoodSoft
BooInc. B-1 BadSoft
BooInc. B-2 GoodSoft
In the example I created above, I have a product data file that contains
information on various products, such as the identification number for the
item, the manufacturer who created the product, and the software system that
the information came from. A product may have more than one product record
with the same Item Number because they were extracted from different systems.
I want to write a query that will tell me the following:
1. How many products have a product record created by the "GoodSoft" system?
2. How many products have no records that were created by the "GoodSoft"
system?
I want to group them by manufacturer, like below. Using the sample data
above, I would want to see the following result:
Mfr Name GoodSoft Products Non-GoodSoft Products
Acme 1 1
BooInc. 2 0
following sample format:
Manufacturer Item Number Source System
Acme A-1 GoodSoft
Acme A-1 BadSoft
Acme A-2 BadSoft
Acme A-2 ReallyBadSoft
BooInc. B-1 GoodSoft
BooInc. B-1 BadSoft
BooInc. B-2 GoodSoft
In the example I created above, I have a product data file that contains
information on various products, such as the identification number for the
item, the manufacturer who created the product, and the software system that
the information came from. A product may have more than one product record
with the same Item Number because they were extracted from different systems.
I want to write a query that will tell me the following:
1. How many products have a product record created by the "GoodSoft" system?
2. How many products have no records that were created by the "GoodSoft"
system?
I want to group them by manufacturer, like below. Using the sample data
above, I would want to see the following result:
Mfr Name GoodSoft Products Non-GoodSoft Products
Acme 1 1
BooInc. 2 0