Still not quite clear, but it may be that your combo box's Row Source and
related properties need adjusting.
Set the Row Source Type to query.
Set the Row Source to this SQL statement:
SELECT Customer.ClientID, Customer.ClientName FROM Customer ORDER BY
Customer.ClientName;
Set the Bound Column to 1.
Set the Column Count to 2.
Set the Column Widths to 0";2"
Set the List Width to 2".
Set the Control Source to the field in the form's RecordSource that is to
store the ClientID value. Do this only if you're using the form for data
entry.
That will mean that the value of the combo box is the ClientID, and only the
client name will be displayed in the dropdown list. Then use the value of
the combo box as the "value" for filtering a report.
--
Ken Snell
<MS ACCESS MVP>
René said:
I woke up this morning with one of those "Duh" thoughts I should have set
the combo box to save the id number to the id field and just had two columns
so that you could choose by the visible name, and then query together the
comment table and the customer/employee table. Correct????
If that sounds like what I should have done give me some pointers so as I
don't skip anything in the fix, if not redirect me (again)
employees) Review table (list of review items) and I just added a comment
tablecombo boxes (set up by wizard) were set to have two columns // CustomerID
and Client Name etc. you choose the client/employee name in the drop down
on the documentation form.one report that is generated by date for the employees and the other for the
clients. The report looks great with the exception of all the numbers in
place of names in the Client/Employee name and staff name