>Hi John,
>
[quoted text clipped - 11 lines]
>Column Width = 1"
>Bound Column = 1
Now I'm REALLY confused.
This is doing exactly and precisely what you're asking it to do:
selecting the Text values Dept or JobTitle from the respective tables.
It's then trying to store that *text* value in a Number field, and, of
course, it's failing; "Human Resources" is not a legal integer value.
I *think* what you need to use is:
SELECT DeptID, Dept FROM tblDept WHERE Dept & "" <> "" ORDER BY Dept;
with ColumnCount 2, Bound Column 1, ColumnWidth 0;1", Control Source
DeptID
and similarly for the other combo box.
John W. Vinson[MVP]
Doug_C - 01 Jun 2005 00:15 GMT
Hi John,
It didn't work. That's ok, obviously I am doing something wrong. This
database was just a quick fix for temporary use anyway. So I am taking all
the ID out except for theone in the main table. I hate to set it up like this
but need to put it in production. The next database I create this week will
definitely need to set up properly. Thank you for all your help and time you
spend with me. I am still going to find out what went wrong.
Thanks John!
> >Hi John,
> >
[quoted text clipped - 30 lines]
>
> John W. Vinson[MVP]