Hi all
I am currently running the following which is returning an e-mail to the desired recipient, however I need to add the current sheet to the email (preferably only cells b3:k41) in the body of the email.
Any help????
Sub Mail()<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o> </o>
Dim OutlookApp As Object<o></o>
Dim Mess As Object, Recip As String<o></o>
Recip = ['[file name.xlsx]sheet name!$G$43]<o></o>
Set OutlookApp = CreateObject("Outlook.Application")<o></o>
Set Mess = OutlookApp.CreateItem(olMailItem)<o></o>
With Mess<o></o>
.Subject = "Subject"<o></o>
.Body =
.Recipients.Add Recip<o></o>
.Send<o></o>
End With<o></o>
<o> </o>
End Sub<o></o>
I am currently running the following which is returning an e-mail to the desired recipient, however I need to add the current sheet to the email (preferably only cells b3:k41) in the body of the email.
Any help????
Sub Mail()<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o> </o>
Dim OutlookApp As Object<o></o>
Dim Mess As Object, Recip As String<o></o>
Recip = ['[file name.xlsx]sheet name!$G$43]<o></o>
Set OutlookApp = CreateObject("Outlook.Application")<o></o>
Set Mess = OutlookApp.CreateItem(olMailItem)<o></o>
With Mess<o></o>
.Subject = "Subject"<o></o>
.Body =
.Recipients.Add Recip<o></o>
.Send<o></o>
End With<o></o>
<o> </o>
End Sub<o></o>