Unfortunately, I am not able to download files off the internet at my current location (corporate policy), and probably will not be at a place where I can do so until at least tomorrow night.
However, I think I have something for you that might work with the data structure you currently have (your table example you posted yesterday).
If you create a new query, go to SQL View, and paste this code in the resulting window, it should take the data you have and make it look like the table I posted:
Code:
SELECT Wipers.ID, "DS" as Loc,Wipers.DS as Wiper_Size
FROM Wipers
UNION
SELECT Wipers.ID, "PS" as Loc,Wipers.PS as Wiper_Size
FROM Wipers
UNION
SELECT Wipers.ID, "Rear" as Loc,Wipers.Rear as Wiper_Size
FROM Wipers;
Give this query a name (we'll call it "tmpWipers" for this example).
Now create another new query, using the "tmpWipers" query as the source of this new query.
- Add the "Wiper_Size" and ID fields to the query fields to return.
- Click on the Aggregate (Totals) button (looks like a Sigma) in the Query Builder.
- This will add a Totals Row with the phrase "Group By" under each field.
- Under the "ID" field, change "Group By" to "Count"
Now, if you view your results, it should show you the total count of each wiper size.