F fenhow Registered User. Local time Today, 14:11 Joined Jul 21, 2004 Messages 599 Oct 9, 2009 #1 Hello, Is is possible to run an update query but prompting for the value that all records will be updated to? versus having a fixed value in the "Update To" area? Thanks. Fen How
Hello, Is is possible to run an update query but prompting for the value that all records will be updated to? versus having a fixed value in the "Update To" area? Thanks. Fen How
John Big Booty AWF VIP Local time Tomorrow, 09:11 Joined Aug 29, 2005 Messages 8,243 Oct 9, 2009 #2 You can put a prompt message (enclosed in square brackets "[]" ) in the Update To area. Alternatively you could pick up the value from an unbound text box on the referring form by using; Code: Forms!FRM_FormName!ControlName In the Update To area. You would also need to fire some code to check that the text box contained a valid Update To value.
You can put a prompt message (enclosed in square brackets "[]" ) in the Update To area. Alternatively you could pick up the value from an unbound text box on the referring form by using; Code: Forms!FRM_FormName!ControlName In the Update To area. You would also need to fire some code to check that the text box contained a valid Update To value.
F fenhow Registered User. Local time Today, 14:11 Joined Jul 21, 2004 Messages 599 Oct 9, 2009 #3 Thats it! Thanks a lot. Nice job. Fen