Yes<br>
Where is the e-mail address? in a table?<br>
<br>
Here is an option. Put the name and e-mail in the combo box.<br>
Then using the same principle as above put the second column in a text box i.e. Me!Email = combo1.col(1)<br>
<br>
Would you like to send that person and e-mail while we are on the subject?<br>
There is a wizard that will do it for you.<br>
Add a new button<br>
click the in "Categories" list on "Report Operations"<br>
Click "Mail report" in the "Actions" list<br>
click Next.<br>
follow prompts<br>
<br>
After its done you can edit the code it creates to make changes to the code like so<br>
<br>
----------------- Sample of what it creates and changes I made<br>
Private Sub Command7_Click()<br>
On Error GoTo Err_Command7_Click<br>
<br>
Dim stDocName As String<br>
<br>
stDocName = "Daily PO's"<br>
DoCmd.SendObject acReport, stDocName<br>
DoCmd.SendObject acSendNoObject, , acformattext, Me!Email, , , "Subject goes here", "Message here", False<br>
<br>
Exit_Command7_Click:<br>
Exit Sub<br>
<br>
Err_Command7_Click:<br>
MsgBox Err.Description<br>
Resume Exit_Command7_Click<br>
<br>
End Sub<br>
---------------------------------------<br>
the first docmd line Access created the second one I added.<br>
<br>
<br>