I am experienced at VBA but new to SQL.
I am developing a test sheet program in MS Access for the plant that I work at. This test sheet program will be used across 3 product lines.
When an order is created, it can contain up to all 3 products. The products are unique enough that I cannot put them all into their own table. So I have broken the test sheets up into 3 tables, each table representing its respective product test sheet. Please see the image below for my relationship setup.

What I am trying to do:
I am trying to design a query that will be my master list (outputting to a continuous form). The master list will show all orders, and also show how many units have been tested in each order. See below for my desired output.
My Issue: 
It is not properly counting the number of related records. See the linked photo.
I know my key field is Order Number but I am searching by Job name. Originally my key field was job name but then switched it to order number.
thank you for your time, I am happy to provide more information if needed.
I have created 3 queries. Each query counts the number of tests for that product that are associated with an order number. Below you will see my code for
QryCountofTestedHUVFrom there I have gone into the relationships view, and linked
QryCountofTestedHUV.OrderNumbertoTblJobName.OrderNumber. Now I can addCountofHUVTestsfrom queryQryCountofTestedHUVas a field to my query,QryAllJobs!QryAllJobsis my master list I showed earlier.I have repeated this 3 times for all 3 product lines and it works!