OK so here goes.
I have created a table for my "employees details" including "employee number". I have also completed another table which shows orders by "employee number", details of order etc.
I created a query which shows each employee on its own line with a "total number of the orders taken" by the employee rather than a random list showing each individual order. so for example it shows:
Employee ID Total Orders
Employee 1 3
Employee 2 9
Employee 3 7
So now on the "employee details" screen I want to be able to show the total number of orders taken by that individual employee without listing each individual order and date. Every time i try it in a combo box it keeps showing every employees totals in a list rather than just that employee.
so for "employee 1" it shows:
3
9
7
instead of just 3,
How can i make the combo box only show the total for that employee?
I have created a table for my "employees details" including "employee number". I have also completed another table which shows orders by "employee number", details of order etc.
I created a query which shows each employee on its own line with a "total number of the orders taken" by the employee rather than a random list showing each individual order. so for example it shows:
Employee ID Total Orders
Employee 1 3
Employee 2 9
Employee 3 7
So now on the "employee details" screen I want to be able to show the total number of orders taken by that individual employee without listing each individual order and date. Every time i try it in a combo box it keeps showing every employees totals in a list rather than just that employee.
so for "employee 1" it shows:
3
9
7
instead of just 3,
How can i make the combo box only show the total for that employee?
Comment