I have a database that currently has 2 tables for data and 2 forms for entering that data.
tblWork holds the majority of the information about anything we have going on for someone. tblSales is used to store information based on "sales."
All the information in tblSales also exists in tblWork but we wanted a separate way to track those records (tblSales does not have all the fields tblWork has)
I currently use two separate forms to enter the data and I would like to do this differently. Can I create a button on the main tblWork form that would automatically create a record in tblSales with specific fields?
For instance: on frmWork I have FirstName, LastName, PhoneNumber and OrderNumber fields that will be entered but I would like a button to generate a record in tblSales with those fields populated for me.
Thanks!
tblWork holds the majority of the information about anything we have going on for someone. tblSales is used to store information based on "sales."
All the information in tblSales also exists in tblWork but we wanted a separate way to track those records (tblSales does not have all the fields tblWork has)
I currently use two separate forms to enter the data and I would like to do this differently. Can I create a button on the main tblWork form that would automatically create a record in tblSales with specific fields?
For instance: on frmWork I have FirstName, LastName, PhoneNumber and OrderNumber fields that will be entered but I would like a button to generate a record in tblSales with those fields populated for me.
Thanks!