Update query

Roland87

Registered User.
Local time
Today, 05:02
Joined
Sep 5, 2012
Messages
26
This is pretty straightforward; I am trying to make an update query where the update to value is specified by the user. (prompted when running the query).

What should I do ?
 
The simplest way is to put the following in the Update To grid under the field you wish to update;
Code:
[Please Enter the New Value]
 
The simplest way is to put the following in the Update To grid under the field you wish to update;
Code:
[Please Enter the New Value]

Don't I feel like a total newbie :o

Thank you John :)
 
Create a form, make a text box. Now give reference of this form in the query's UpdateTo field.

something like this:

forms!form![TextBox]

User shall click a command button on the form which should run the query and since the text box contains the new data, it will update the table.

revert if you have troubles.
 

Users who are viewing this thread

Back
Top Bottom