R Roland87 Registered User. Local time Today, 10:39 Joined Sep 5, 2012 Messages 26 Sep 21, 2012 #1 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 ?
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 ?
John Big Booty AWF VIP Local time Today, 17:39 Joined Aug 29, 2005 Messages 8,262 Sep 21, 2012 #2 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]
R Roland87 Registered User. Local time Today, 10:39 Joined Sep 5, 2012 Messages 26 Sep 21, 2012 #3 John Big Booty said: 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] Click to expand... Don't I feel like a total newbie Thank you John
John Big Booty said: 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] Click to expand... Don't I feel like a total newbie Thank you John
M mahenkj2 Registered User. Local time Today, 13:09 Joined Apr 20, 2012 Messages 459 Sep 21, 2012 #4 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.
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.