Yes/No in two Tables

G

Guest

Hello-

I'm creating a Book database and im having some trouble. I have one table
that stores the book's information called tblBooks. One field in this table
is a Yes/No field. And if the book is loaned out then their should be a
check mark in it. I have created another table called tblLoan that stores
who loaned what out. I have a combo box that grabs the book titles so the
user can pick what book to loan out. Is there a way that I can add another
Yes/No to this table and when it is checked in the Loan table, the check in
the tblBooks table be checked??

Thanks!
 
G

Guest

Using the AfterUpdate event, for the Boolean (Yes/No) field tied to tblLoan,
you can add an Update statement to trigger the Boolean in tblBooks.

Sharkbyte
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top