J
JOM
I would like to put a button on my form that when I press it runs the update
query and updates that record i.e., update the email address field if the
Firstname and lastname are not null. how do I do that?
My update query is as follows:
UPDATE tblemployee SET tblemployee.EmailAdd =
Replace(Replace([FirstName],".","") & "." & [LastName]," ",".") &
"@Company.com";
query and updates that record i.e., update the email address field if the
Firstname and lastname are not null. how do I do that?
My update query is as follows:
UPDATE tblemployee SET tblemployee.EmailAdd =
Replace(Replace([FirstName],".","") & "." & [LastName]," ",".") &
"@Company.com";