Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
You can e-mail a single worksheet using SendMail with Microsoft Outlook. The following macro copies the active worksheet and sends it as the lone worksheet in its own workbook:
Sub EmailSingleSheet() ActiveSheet.Copy On Error Resume Next ActiveWorkbook.SendMail "someone@anywhere.com", "Test of single sheet" Err.Clear ActiveWorkbook.Close False End Sub