S
Stephan Leduc
I have a form with different combo boxes.
The row source for each combo box is in different sheets.
For example, I have one sheet for account manages info.
I have 3 columns, ID, AccountManagerName, AccountManagerEmail.
For my combo box, my row source is AccountManagerName, so the names are
displayed.
My code is:
Private Sub AccountManagerName_DropButtonClick()
AccountManagerName.AccountManagerName= "AccountManagerName!B2:B15"
End Sub
My form is dedicated to store info within a sheet and send email. In my code
I need to insert the email address of the AccountManagerName selected from
the combo box.
In my "sendto" statement, how can I selected the email address which relates
to AccountManagerName selected by the user in the combo box ?
Thanks in advance for any help.
Regards
Stephan
The row source for each combo box is in different sheets.
For example, I have one sheet for account manages info.
I have 3 columns, ID, AccountManagerName, AccountManagerEmail.
For my combo box, my row source is AccountManagerName, so the names are
displayed.
My code is:
Private Sub AccountManagerName_DropButtonClick()
AccountManagerName.AccountManagerName= "AccountManagerName!B2:B15"
End Sub
My form is dedicated to store info within a sheet and send email. In my code
I need to insert the email address of the AccountManagerName selected from
the combo box.
In my "sendto" statement, how can I selected the email address which relates
to AccountManagerName selected by the user in the combo box ?
Thanks in advance for any help.
Regards
Stephan