Hello All
I am having code problems with the following. I hope someone onhere can help!
I have a report that I use to track who the given owner is of every tool in ourcalibration database.
The table where the information is stored in called tbl-1-Calibration1.
I have a query (qry-1-ToolOwner) that pulls the following fields ofinformation from the table.
ID Auto Number Field
ToolOwner1 Short Text Field
SerialNo ShortText Field
ModelNumber ShortText Field
ToolIdentification1 Short Text Field
Location1 Short Text Field
The query runs perfectly and supply's the information on every tool in thedatabase. From this query I created a report(rpt-1-ToolOwner).
When I run the report I again get exactly what the query is asking for and thatis where my problem begins.
I need to filter this report using a combo box where I can look up theemployees name and then the report will show me just the tools owned
by that specific employee. I have tried putting the combo box on mymenu form with a command button. I have directed the combo box to
get its information from a table called (tblEmployee) using Column (Employee)which is a “Short Text” field that list all employees. When thereport runs it either retrieves the entire database or none of it depending onwhat it is look at in the code at the time.
I have also directed the combo box to get its information from the table( tbl-1-Calibration1) in the column called ToolOwner1. Thisgives me a Combo Box lookup that has each employee in it many times (1 time foreach tool owned). I have tried to limitthe list to unique values without success. When the report runs it acts like there is not a filter and gives me theentire database sorted by employee which again is not what I need. I just need the one specific employee that is in the combo box.
Does anyone have any ideas on how I can fix this issue?
WAG1