Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
LittleVague said:I have a form and I want the data input to be stored in two tables, a history table and an inventory table
Dim rst as DAO.Recordset
'Open the History table
Set rst = Currentdb.OpenRecordset("History")
'Take the Inventory info on the form and
'use it to insert a record in the history table
With rst
.AddNew
!Location = Me.Location
!Category = Me.Category
![Item Description] = Me. [Item Description]
!Manufacturer = Me.Manufacturer
![Model Name] = Me.[Model Name]
![Model number] = Me.[Model number]
![serial number] = Me.[serial number]
![Last Update] = Me.[last update]
.Update
.Close
End rst
Set rst = Nothing