John,
I have two tables. One is for our product. Ex. Product #, Description,
Date sold, and other information on it. The second table is a log which has
the product #, date issued, date completed, and description. My boss would
like the product #, Date issued and the description to automatically fill in.
Can I do this? Thanks Jane
You can. But - It would be A VERY BAD IDEA.
Storing such information redundantly wastes space - no big deal - but
much worse, it risks data inconsistancy. Suppose you have a product
with a description; and a log file which ALSO contains a description.
Either description could be edited at any time; then you would have
*two different incompatible descriptions*, and no way to tell which is
right!
Instead, use a Form based on the Product table showing the information
pertinent to that product (including the description); and a Subform
based on the log table, using the Product # as the master/child link
field. That way you can see the product information AND the log
information at the same time.
For Reports, use a Query joining the two tables. It will have all the
fields from both tables available; you don't need to or want to copy
anything other than the Product# into the log table.
John W. Vinson [MVP]