MarcusLCox
Programmer
Seen lots of code for emailing excel workbook or file. I want to just mail an individual work sheet. Using Microsoft Outlook cox@bucon.com
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub MailActiveSheet()
ActiveSheet.Copy
With ActiveWorkbook
.SendMail Recipients:="Recipient"
.Saved = True
.Close
End With
End Sub