For instance, making a phone list where the "phone" field could contain
several entries veiwable by clicking on as arrow to drop down the box
That's not how relational databases work.
If you have a one (person) to many (phone) relationship, use TWO
tables in a one to many relationship. The Phones table would have a
link to the Primary Key of the People table (ContactID perhaps), a
field for the phone number, and perhaps a PhoneType field (with values
"Home", "Work", "Cell", "Fax" for example). You'ld use a Subform on
the form you're using to enter people data bound to this Phones table.
John W. Vinson[MVP]