Hello All. I have written (rather sloppy) code to update two other fields on my form based on a selection from the first field. Example is below:
If Engineer_Name = "Mike" Then
Email_Address = "mike@nowhere.com"
Primary_Responsibility = "Hardware"
The thing is, I have tables already created with specific email addresses (the same applies to his responsibility) and I want to automatically insert his email address in one field and his responsibility in another field, based on the selection of his name. I'm still at a VERY BASIC understanding of coding at this point, and this code actually works, but I'd like to be able to write code that would refer to the actual table values and insert them into the fields. Could anyone help me figure out how to do this? I've seen a similar subject in this discussion, but to be honest, I haven't covered the me!xxxx chapter and I don't know what that is =]
Thanks in advance!
If Engineer_Name = "Mike" Then
Email_Address = "mike@nowhere.com"
Primary_Responsibility = "Hardware"
The thing is, I have tables already created with specific email addresses (the same applies to his responsibility) and I want to automatically insert his email address in one field and his responsibility in another field, based on the selection of his name. I'm still at a VERY BASIC understanding of coding at this point, and this code actually works, but I'd like to be able to write code that would refer to the actual table values and insert them into the fields. Could anyone help me figure out how to do this? I've seen a similar subject in this discussion, but to be honest, I haven't covered the me!xxxx chapter and I don't know what that is =]
Thanks in advance!