Skip to main content

How to send worksheet only through Outlook from Excel?

Author: Xiaoyang Last Modified: 2024-09-04

If you want to email a single worksheet out of a workbook in Excel via Outlook, you can send the worksheet as an attachment, as body content or as a PDF file. But are there any quicker ways for you to deal with this problem in Excel?

Send single worksheet as body from Excel with Send to Mail Recipient command

Send single worksheet as an attachment from Excel with VBA code

Send single worksheet as a PDF file from Excel with VBA code


arrow blue right bubble Send single worksheet as body from Excel with Send to Mail Recipient command

Excel supports us to email the active worksheet as body content by using the Send to Mail Recipient command. You can do as follows:

If you use Excel 2007, 2010 or 2013, you need to add this Send to Mail Recipient command to the Quick Access Toolbar first.

1. Click the icon of the Customize Quick Access Toolbar, and choose More Commands, see screenshot:

choose More Commands from Customize Quick Access Toolbar

2. And in the Excel Options dialog box, choose Commands Not in the Ribbon in the Choose Commands from drop down list, then select the Send to Mail Recipient option, and click Add >> button to add this command, at last click OK to save this setting. See screenshot:

select the Send to Mail Recipient option from Excel Options dialog box

3. The Send to Mail Recipient command has been inserted into the Quick Access Toolbar, see screenshot:

the Send to Mail Recipient command has been inserted into the Quick Access Toolbar

4. Then click this Send to Mail Recipient icon button, and a prompt box pops out, in the E-mail prompt box, check Send the current sheet as the message body, and click OK. See screenshot:

check Send the current sheet as the message body in the dialog box

5. And an email edit box is displayed above the worksheet data, you can enter your recipients, subject and introduction into the corresponding text box. See screenshot:

an email edit box is displayed, enter the recipients, subject and introduction

6. Then click Send this Sheet to send this active worksheet as message body to your specific person.

a screenshot of kutools for excel ai

Unlock Excel Magic with Kutools AI

  • Smart Execution: Perform cell operations, analyze data, and create charts—all driven by simple commands.
  • Custom Formulas: Generate tailored formulas to streamline your workflows.
  • VBA Coding: Write and implement VBA code effortlessly.
  • Formula Interpretation: Understand complex formulas with ease.
  • Text Translation: Break language barriers within your spreadsheets.
Enhance your Excel capabilities with AI-powered tools. Download Now and experience efficiency like never before!

arrow blue right bubble Send single worksheet as an attachment from Excel with VBA code

If you would like to email the active worksheet as an attachment, the following VBA code can do a favor for you.

1. Activate your worksheet that you want to send.

2. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

3. Click Insert > Module, and paste the following code in the Module Window.

VBA code: send current worksheet as attachment from Excel

Sub SendWorkSheet()
'Update 20131209
Dim xFile As String
Dim xFormat As Long
Dim Wb As Workbook
Dim Wb2 As Workbook
Dim FilePath As String
Dim FileName As String
Dim OutlookApp As Object
Dim OutlookMail As Object
On Error Resume Next
Application.ScreenUpdating = False
Set Wb = Application.ActiveWorkbook
ActiveSheet.Copy
Set Wb2 = Application.ActiveWorkbook
Select Case Wb.FileFormat
Case xlOpenXMLWorkbook:
    xFile = ".xlsx"
    xFormat = xlOpenXMLWorkbook
Case xlOpenXMLWorkbookMacroEnabled:
    If Wb2.HasVBProject Then
        xFile = ".xlsm"
        xFormat = xlOpenXMLWorkbookMacroEnabled
    Else
        xFile = ".xlsx"
        xFormat = xlOpenXMLWorkbook
    End If
Case Excel8:
    xFile = ".xls"
    xFormat = Excel8
Case xlExcel12:
    xFile = ".xlsb"
    xFormat = xlExcel12
End Select
FilePath = Environ$("temp") & "\"
FileName = Wb.Name & Format(Now, "dd-mmm-yy h-mm-ss")
Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)
Wb2.SaveAs FilePath & FileName & xFile, FileFormat:=xFormat
With OutlookMail
    .To = "skyyang@extendoffice.com"
    .CC = ""
    .BCC = ""
    .Subject = "kte features"
    .Body = "Please check and read this document."
    .Attachments.Add Wb2.FullName
    .Send
End With
Wb2.Close
Kill FilePath & FileName & xFile
Set OutlookMail = Nothing
Set OutlookApp = Nothing
Application.ScreenUpdating = True
End Sub

Note: In the above code, you can change the following information to your own need.

  • .To = "skyyang@extendoffice.com"
  • .CC = ""
  • .BCC = ""
  • .Subject = "kte features"
  • .Body = "Please check and read this document."

4. Then click F5 key to run this code, and a prompt box will pop out, click Allow when the progress bar is finished, and then the current worksheet has been sent to your recipient as an attachment.

click Allow when the progress bar is finished


arrow blue right bubble Send single worksheet as a PDF file from Excel with VBA code

Sometimes, you need to send your worksheet report to others but don’t want others to modify it. In this case, you can send the worksheet as a PDF file from Excel.

1. Activate your worksheet that you want to send.

2. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

3. Click Insert > Module, and paste the following code in the Module Window.

VBA code: send current worksheet as PDF file from Excel

Sub SendWorkSheetToPDF()
'Update 20131209
Dim Wb As Workbook
Dim FileName As String
Dim OutlookApp As Object
Dim OutlookMail As Object
On Error Resume Next
Set Wb = Application.ActiveWorkbook
FileName = Wb.FullName
xIndex = VBA.InStrRev(FileName, ".")
If xIndex > 1 Then FileName = VBA.Left(FileName, xIndex - 1)
FileName = FileName & "_" + ActiveSheet.Name & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, FileName:=FileName
Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)
With OutlookMail
    .To = "skyyang@extendoffice.com"
    .CC = ""
    .BCC = ""
    .Subject = "kte features"
    .Body = "Please check and read this document."
    .Attachments.Add FileName
    .Send
End With
Kill FileName
Set OutlookMail = Nothing
Set OutlookApp = Nothing
End Sub

Note: In the above code, you can change the following information to your need.

  • .To = "skyyang@extendoffice.com"
  • .CC = ""
  • .BCC = ""
  • .Subject = "kte features"
  • .Body = "Please check and read this document."

4. Then press F5 key, and a prompt box will pop out, click Allow after the progress bar finising, then the active worksheet has been sent to the specific person as PDF file.

click Allow after the progress bar finising

Notes:

1. These methods are only available when you use Outlook as your mail program.

2. After sending the current worksheet, you can go to your Outlook to make sure the email has been sent successfully.


Create Mailing List Then Send Emails

The Kutools for Excel's Create Mailing List and Send Emails utilities can quickly create mailing list in a worksheet, then send the same subject, same contents and same attachments to multiple email addresses.
 mailing list
arrow down
send multiples emails by kutools

Related articles:

How to send current workbook through Outlook from Excel?

How to send / email range of cells through outlook from Excel?

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more
Use Kutools in your preferred language – supports English, Spanish, German, French, Chinese, and 40+ others!

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!