J
James
I would like an append query to run when a button is clicked, but only on the
items that are diplayed in the form. So if someone has a filter on a group
of records, and then they click the button, all of the records that are
selected will be sent to the append qry.
Can anyone tell me the correct way to select many records in a multi-page
form. Each page is a product and I am trying to add information for each
product.
Example:
rs = Me.recordset
INSERT INTO tblAcqDetail ( Quantity, PriceEach, ProductID )
SELECT rs.[txtQty] AS txtQty, rs.[txtCost] AS txtCost, rs.[txtProductID] AS
txtProductID;
thanks
items that are diplayed in the form. So if someone has a filter on a group
of records, and then they click the button, all of the records that are
selected will be sent to the append qry.
Can anyone tell me the correct way to select many records in a multi-page
form. Each page is a product and I am trying to add information for each
product.
Example:
rs = Me.recordset
INSERT INTO tblAcqDetail ( Quantity, PriceEach, ProductID )
SELECT rs.[txtQty] AS txtQty, rs.[txtCost] AS txtCost, rs.[txtProductID] AS
txtProductID;
thanks