S
Sgwapt
What should I do in this case?
When user is prompted "Do you want to add to inventory?"
and selects "Yes" I want values on user form and auto values to be added to
another table. In this case the other table is "Inventory" The user form is
name "Inspection Entry".
This is what i have so far but cant get the open table or to work.
With rstTable
.AddNew
.Fields("TransType") = "FINISHEDGOODS"
.Fields("CreateDate") = Date
.Fields("ModDate") = Date
.Fields("ClientID") = TxtCustID.Value
.Fields("ClientItem") = TxtPartNo.Value
.Fields("Amount") = TxtQuantity.Value
.Fields("Comments") = TxtComments.Value
.Update
End With
Thank you in advance
When user is prompted "Do you want to add to inventory?"
and selects "Yes" I want values on user form and auto values to be added to
another table. In this case the other table is "Inventory" The user form is
name "Inspection Entry".
This is what i have so far but cant get the open table or to work.
With rstTable
.AddNew
.Fields("TransType") = "FINISHEDGOODS"
.Fields("CreateDate") = Date
.Fields("ModDate") = Date
.Fields("ClientID") = TxtCustID.Value
.Fields("ClientItem") = TxtPartNo.Value
.Fields("Amount") = TxtQuantity.Value
.Fields("Comments") = TxtComments.Value
.Update
End With
Thank you in advance