I think that I am making this more difficult that I need to but here goes: (Thanks in advance for any help).
I have a table which records a few different dates for a particular order:
Order_Num
planned_complete_date
actual_complete_date
I want to create a chart that shows:
Count of orders planned to complete during a period
Count of those orders that were completed on time
Count of those orders that were late
Count of those orders that have not yet been completed
I get stuck in the queries as follows:
I have created 4 individual 'total' queries that correctly count each of the pieces of info I need for the chart (all counts are based on planned_complete_date).
I then created a fifth query where I am trying to bring the 4 individual queries together by joining them on planned_complete_date. I use the Count of orders planned to complete as the main query and link the other 3 to it.
Even though I am changing the join property to show all records for the planned complete, and only those that have values for the others, I get all nulls for all of the others.
Please help.
I have a table which records a few different dates for a particular order:
Order_Num
planned_complete_date
actual_complete_date
I want to create a chart that shows:
Count of orders planned to complete during a period
Count of those orders that were completed on time
Count of those orders that were late
Count of those orders that have not yet been completed
I get stuck in the queries as follows:
I have created 4 individual 'total' queries that correctly count each of the pieces of info I need for the chart (all counts are based on planned_complete_date).
I then created a fifth query where I am trying to bring the 4 individual queries together by joining them on planned_complete_date. I use the Count of orders planned to complete as the main query and link the other 3 to it.
Even though I am changing the join property to show all records for the planned complete, and only those that have values for the others, I get all nulls for all of the others.
Please help.