D
danthrom
I am creating a form based on two tables.
tblStorageBoxInventory
=================
BoxNumber (PK)
storage date
tbl Matters Details
=================
BoxNumber ((foreign key))
change date
(there are other fields in both tables but that isn't related to the question)
I want to run a update query from the StorageBoxInventory form, so that when
a user types the date in [storage date] Access prompts the user for updating
all related fields in the tbl Matters Details.
I have a update query that prompts the user for the box number and date (SQL
below). How do I modify that to fit the form?
UPDATE [tbl Matters Details] SET [tbl Matters Details].[change date] = [what
date?]
WHERE ((([tbl Matters Details].[box number])=[What box number?]));
tblStorageBoxInventory
=================
BoxNumber (PK)
storage date
tbl Matters Details
=================
BoxNumber ((foreign key))
change date
(there are other fields in both tables but that isn't related to the question)
I want to run a update query from the StorageBoxInventory form, so that when
a user types the date in [storage date] Access prompts the user for updating
all related fields in the tbl Matters Details.
I have a update query that prompts the user for the box number and date (SQL
below). How do I modify that to fit the form?
UPDATE [tbl Matters Details] SET [tbl Matters Details].[change date] = [what
date?]
WHERE ((([tbl Matters Details].[box number])=[What box number?]));