Forms to report

T

tremb

How to transfer information from a form table to a report that is already in
database?
 
J

John W. Vinson

How to transfer information from a form table to a report that is already in
database?

Since there is no such thing as a "form table" your question has no answer.

Tables are used to store data.

Forms are usually linked to tables, allowing onscreen display and editing of
the data in the tables.

Reports are based upon tables (usually via a Query) to print the data in the
tables.

If you have an existing report, you can use its Recordsource property (again,
usually a Query) to specify which tables - and which records in the table -
will be printed.
 
Top