Update Query
Can anyone help with this one. I want to create an e-mail address from the details I collect on my form and achieve this with the following expression as the control source in a text box on my form
=[Forename] & "." & [Surname] & "@thee-mailaddress.com;"
This works fine, but I want to then send this address to the e-mail field in the underlying table. I have tried using an update query with the update to criteria:
Forms.MyForm.email
but it puts the email address of the field that has the focus on the form on every record in my table ie the first e-mail address john.smith@thee-mailaddress.com is entered against every record in my table. How can I get the update query to update the e-mail field for each individual record?
Can anyone help with this one. I want to create an e-mail address from the details I collect on my form and achieve this with the following expression as the control source in a text box on my form
=[Forename] & "." & [Surname] & "@thee-mailaddress.com;"
This works fine, but I want to then send this address to the e-mail field in the underlying table. I have tried using an update query with the update to criteria:
Forms.MyForm.email
but it puts the email address of the field that has the focus on the form on every record in my table ie the first e-mail address john.smith@thee-mailaddress.com is entered against every record in my table. How can I get the update query to update the e-mail field for each individual record?