If I use lookup wizard to get information from another tabel in my database,
does this enable a relationship between the 2 tables in question?
And if yes, what is then the difference between this and using relationships
window to establish relationships?
/Andy
Never use the lookups at the table level. This breaks the 2nd Commandment
of Access:
http://www.mvps.org/access/tencommandments.htm
It was a bad idea to begin with and hasn't gotten any better. Your users
should never see the tables. They should only see the tables through forms
and reports.
--
--Roger Carlson
Access Database Samples: www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/wa.exe?SUBED1=ACCESS-L
"Andy" <news...@multizite.org> wrote in message
news:OiU3vPL...@TK2MSFTNGP10.phx.gbl...
What Iæm currently doing is that I have a table with all our application
information in.
And a table with all our employees. If I have a field in the application
table which holds the SystemOwner, and this can be one of the employees in
the employee table, how would I integrate that into the application table?
/Andy
"Roger Carlson" <NO-Rog3...@hotmail.com> wrote in message
news:%23nuURiL...@tk2msftngp13.phx.gbl...
Now, on a form, use a Combo box which displays the EmployeeName of the
selected employee, but actually stores the EmployeeID. The Combobox Wizard
can help you do this, but essentially, you create a Row Source query that
includes the EmployeeID and EmployeeName, but make the ColumnWidths = 0,1
and also make the BoundColumn = 1. This will display the second column
(name) but store the first column (EmployeeID).
HTH
--
--Roger Carlson
Access Database Samples: www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/wa.exe?SUBED1=ACCESS-L
"Andy" <news...@multizite.org> wrote in message
news:e$IeCoL0...@TK2MSFTNGP09.phx.gbl...
So what you're essentially doing is that you use the unic fields as basis
for the relationship. And then base your queries on those unic IDs and
displays the name that belongs to the ID?
/A.
"Roger Carlson" <NO-Rog3...@hotmail.com> wrote in message
news:OkYDryL0...@TK2MSFTNGP09.phx.gbl...