Eastern Snake-Neck Posted October 9, 2008 Posted October 9, 2008 This has probably been answered before, however... I have a database that I am developing. In one table (called Books) I have a handful of fields which includes 'Book Title' (text) and 'Level' (numerical value). In another table, I have a value list that uses values from Book Title (First Field) and Level (Second Field). What I need to happen is: When a user selects a Book Title from the value list, it then displays the Book Title, plus it also displays the Level in a separate field. How do I make this happen? Regards, Michael.
bcooney Posted October 10, 2008 Posted October 10, 2008 I hope that your Book value list consists of BookID and BookTitle, perhaps displaying only the second field. When you select a book title in Table2, you ought to be storing the BookID in a foreign key field (Table2:_kF_BookID). Then using a relationship btw Table1 and Table2 by BookID, you can either place the related Level field on the Table2 layout, or lookup its value into a Table2 Level field (Level_lu).
Recommended Posts
This topic is 5885 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now