How to Send Automatic Email from Excel to Outlook (4 Methods)

When users send emails to their customers or bosses it’s quite hard to keep track. In that case, Excel comes in handy. Therefore, “send automatic email from Excel to Outlook” has been proven to be a time-saving approach. Excel VBA Macros and the HYPERLINK function can send automatic emails or create a draft using Excel entries.

Let’s say we have Employee Restructured Salary data in Excel and we want to send automatic email using Outlook.

Dataset-Send Automatic Email from Excel to Outlook

In this article, we demonstrate multiple variants of VBA Macros and the HYPERLINK function to send automatic email from Excel to Outlook.


Opening Microsoft Visual Basic and Inserting Code in Module

Before proceeding to demonstrate any methods, it’s necessary to know the ways to open and insert a Module in the Microsoft Visual Basic in Excel.

🔄 Opening Microsoft Visual Basic: There are mainly 3 ways to open Microsoft Visual Basic window.

1. Using Keyboard Shortcuts: Press ALT+F11 altogether to open Microsoft Visual Basic window.

2. Using Developer Tab: In an Excel worksheet, Go to Developer Tab > Select Visual Basic. The Microsoft Visual Basic window appears.

Microsoft Visual Basic-Send Automatic Email from Excel to Outlook

3. Using Worksheet Tab: Go to any worksheet, Right-Click on it > Choose View Code (from the Context Menu).

View Code


 🔄 Inserting a Module in Microsoft Visual Basic: There are 2 ways to insert a Module in Microsoft Visual Basic window,

1. Using Sheet’s Options: After opening the Microsoft Visual Basic window, select a Worksheet > Right-Click on it > Select Insert (from the Context Menu) > then choose Module.

Module-Send Automatic Email from Excel to Outlook

2. Using Toolbar: You can also do it by selecting Insert (from the Toolbar) > then choosing Module.

Module


1. Using Excel VBA Macro to Automatically Send Email from Outlook to Selected Recipients

We want to create a Macro execution Button by which we can simply send mail to selected recipients with just a click.

Step 1: Go to the Insert tab > Shapes > Select any of the offered shapes (i.e., Rectangular: Rounded Corners).

Specific Recipients-Send Automatic Email from Excel to Outlook

Step 2: Drag the Plus Icon wherever you want to insert the Shape as shown in the image below.

Dragging

Step 3: Choose a preferred Shape Fill and Outline Color then right-click on it. Click on Edit Text to insert text.

Edit Text

Step 4: Use the instruction to open Microsoft Visual Basic and insert Module. Paste the following Macro in the Module.

Sub ExcelToOutlookSR()
Dim mApp As Object
Dim mMail As Object
Dim SendToMail As String
Dim MailSubject As String
Dim mMailBody As String
For Each r In Selection
    SendToMail = Range("C" & r.Row)
    MailSubject = Range("F" & r.Row)
    mMailBody = Range("G" & r.Row)
Set mApp = CreateObject("Outlook.Application")
Set mMail = mApp.CreateItem(0)
With mMail
    .To = SendToMail
    .Subject = MailSubject
    .Body = mMailBody
    .Display ' You can use .Send
    End With
Next r
End Sub

Macro

➤ in the code,

1 – start the macro procedure by declaring the variables as Object and String.

2 – run a VBA FOR loop for each row in the selection to assign Email’s Send To, Subject, and Body using row entries.

3 – assign variables.

4 – perform the VBA With statement to populate Outlook items such as Send To, Mail Subject, etc. Here the macro only executes the Display command to bring out Outlook with an email draft. However, if Send command is used in place or after Display, Outlook will send the created email to the selected recipients.

5 – finish the VBA FOR loop.

Step 5: Return to the Worksheet. Right-click on the Shape then select Assign Macro from the Context Menu options.

Assign Macro

Step 6: Select the Macro (i.e., ExcelToOutlookSR) under the Macro name and choose the Macro in option as This Workbook. Click on OK.

Assign Macro

Step 7: Now, in the worksheet, select one or multiple employees then click on the Shape Button.

Click on Shape Button

Step 8: Excel prompts Outlook to lunch and creates or sends emails to the selected employees. As you select two of the employees, Outlook generates two different email drafts ready to be sent.

Email draft-Send Automatic Email from Excel to Outlook

As the macro only provides the Display command, Outlook just displays the email draft without sending it. Use the Send command to automatically send emails from Excel to Outlook using cell entries.

Read More: How to Send Excel File to Email Automatically


2. Sending Email Automatically from Excel to Outlook Depending on Specific Cell Value

What if we want to send automatic email after achieving targets from Excel to Outlook? A Macro code can do this job with ease.

Suppose, we have Quarterly Sales Data as depicted below, after achieving a target (i.e., Sales> 2000) will automatically prompt Outlook to send an email from Excel to an assigned email id.

Dataset-Send Automatic Email from Excel to Outlook

Step 1: Type the following macro code in any Module.

Option Explicit
Dim Rng As Range
Sub Worksheet_Change(ByVal mRng As Range)
On Error Resume Next
If mRng.Cells.Count > 1 Then Exit Sub
Set Rng = Intersect(Range("F17"), mRng)
If Rng Is Nothing Then Exit Sub
If IsNumeric(mRng.Value) And Target.Value > 2000 Then
Call ExcelToOutlook
End If
End Sub
Sub ExcelToOutlook()
Dim mApp As Object
Dim mMail As Object
Dim mMailBody As String
Set mApp = CreateObject("Outlook.Application")
Set mMail = mApp.CreateItem(0)
mMailBody = "Greetings Sir" & vbNewLine & vbNewLine & _
"Our outlet has quarterly Sales more than the target." & vbNewLine & _
"It's a confirmation mail." & vbNewLine & vbNewLine & _
"Regards" & vbNewLine & _
"Outlet Team"
On Error Resume Next
With mMail
        .To = "[email protected]"
        .CC = ""
        .BCC = ""
        .Subject = "Notification on Achieving Sales Target"
        .Body = mMailBody
        .Display 'or you can use .Send
End With
On Error GoTo 0
Set mMail = Nothing
Set mApp = Nothing
End Sub

Macro

➤ From the above image, in the sections,

1 – assign a cell (i.e., F17) within a range to execute the VBA IF statement. If the statement results in True, the macro calls another macro for execution.

2 – declare variable types and assign them to populate Outlook’s entries.

3 – perform VBA With statement to assign variables to email entries. Use the Send command instead of Display in case you directly want to send emails without reviewing them. The recipient email is inserted within the macro. Use alternative methods in case you want an automatic insertion of the recipient’s email id.

4 – clear certain variables from assignation.

Step 2: Use the F5 key to run the macro. In a moment, Excel fetches Outlook with a draft email created automatically as shown in the followings. You can click on Send or auto-send using Send command in the macro.

Specific Value-Send Automatic Email from Excel to Outlook

Read More: Automatically Send Emails from Excel Based on Cell Content


3. Creating VBA Macro to Send Email with Active Worksheet from Excel by Outlook

Alternatively, there may be instances where we need to send an entire Active Sheet to an assigned email address. In that case, we can use a VBA Custom Function to be called within a macro.

Step 1: Insert the below macro in the Module.

Function ExcelOutlook(mTo, mSub As String, Optional mCC As String, Optional mBd As String) As Boolean
On Error Resume Next
Dim mApp As Object
Dim rItem As Object
Set mApp = CreateObject("Outlook.Application")
Set rItem = mApp.CreateItem(0)
With rItem
     .To = mTo
     .CC = ""
     .Subject = mSub
     .Body = mBd
     .Attachments.Add ActiveWorkbook.FullName
     .Display 'or you can use .Send
End With
Set rItem = Nothing
Set mApp = Nothing
End Function
Sub OutlookMail()
Dim mTo As String
Dim mSub As String
Dim mBd As String
mTo = "[email protected]"
mSub = "Quarterly Sales Data"
mBd = "Greetings Sir" & vbNewLine & vbNewLine & _
"Kindly find Outlet's Quarterly Sales data attached with this mail." & vbNewLine & _
"It's a notification mail." & vbNewLine & vbNewLine & _
"Regards" & vbNewLine & _
"Outlet Team"
If ExcelOutlook(mTo, mSub, , mBd) = True Then
    MsgBox "Successfully created the Mail draft or Sent"
End If
End Sub

Macro-Send Automatic Email from Excel to Outlook

➤ From the above image, the code’s sections,

1 – declare and set the variables.

2 – assign the commands using the VBA With statement. Use the Display or Send command for reviewing or direct sending emails respectively.

3 – clear the previously set variables.

4 – assign the VBA With commands with texts.

5 – execute the VBA Custom Function.

Step 2: To execute the macro press F5, and instantly Excel brings out the Outlook with a draft email to review similar to the below image. Afterward, you are good to send it.

Attached Active Worksheet

Read More: How to Send Multiple Emails from Excel Spreadsheet


4. Sending Automatic Email from Excel to Outlook Using HYPERLINK Function

The HYPERLINK function generates a clickable link in Excel cells to bring Outlook as a medium to send automatic emails from Excel.

Step 1: Type the following formula in cell H5.

=HYPERLINK("MailTo:"&C5&"?Subject="&F5&"&cc="&$D$2&"&body="&G5,"Click Here")

The HYPERLINK function takes “MailTo:”&C5&”?Subject=”&F5&”&cc=”&$D$2&”&body=”&G5 as link_location, and “Click Here” as friendly_name.

Hyperlink-Send Automatic Email from Excel to Outlook

Step 2: Hit ENTER to paste the link. Then click on the link.

Clickable Link

Step 3: Excel takes you to Outlook. And you see all the Outlook entries are filled with assigned data from Excel. Click on Send.

Email Draft

Step 4: Drag the Fill Handle to apply the formula to other cells.

Outcome-Send Automatic Email from Excel to Outlook

Read More: How to Send an Editable Excel Spreadsheet by Email


Download Excel Workbook


Conclusion

VBA Macro Variants and HYPERLINK function can be helpful while sending automatic emails from Excel to Outlook. Hope you find your preferred method within the above-described ones. Comment, if you have further inquiries or have anything to add.


Related Articles

<< Go Back To Send Email from Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Maruf Islam
Maruf Islam

MARUF ISLAM is an excellent marine engineer who loves working with Excel and diving into VBA programming. For him, programming is like a superhero tool that saves time when dealing with data, files, and the internet. His skills go beyond the basics, including ABACUS, AutoCAD, Rhinoceros, Maxsurf, and Hydromax. He got his B.Sc in Naval Architecture & Marine Engineering from BUET, and now he's switched gears, working as a content developer. In this role, he creates techy content... Read Full Bio

25 Comments
  1. Is it a way to include attached files using the hyperlink function?

    • Greetings Julian Chen,

      Sadly, the HYPERLINK function doesn’t support any attachment links in its arguments. You have to use Other Means to attach files. You can use Method 3 of this article to include an attachment.

      Regards,
      Md. Maruf Islam (Exceldemy Team)

  2. Hello Maruf,
    I hope your doing well

    Firstly, thanks for the explicit explanation.

    Secondly, I would like to ask how can we include more than one row in the body.

    As I want to send a table within the body mail A1:L2 for example.

    Thanks in advance again.

    • Reply Bishawajit Chakraborty
      Bishawajit Chakraborty Oct 20, 2022 at 1:50 PM

      Hello Rash,
      Thank you for your comment. If you want to send a table within the email body for any range, then you have to create a table in any worksheet. For this, you will follow our Method No.3 where we have used a VBA code to send an active sheet within the email body. Firstly, you can create a table in this active sheet and send this sheet with your table within the email body. Can you please share your Excel file with us? We will customize the file according to your requirements. Email address [email protected].

      Regards,
      Bishawajit Chakraborty (Exceldemy Team)

  3. Hi

    I am trying to create a hyperlink to outlook which can be clicked to send an email with various cell entries. So the cells before the link will have name, number, dates etc, with a first line in the email “Please see below booking” etc and a line at the end “any problems please let me know” etc. When i use the hyperlink function there aren’t enough characters for everything I need in the email, and it puts all the info on one line with no spaces. Is there a way around this? This is the hyperlink formula I have used =HYPERLINK(“Mailto:”&AD5&”?Subject=”&AE5&”&cc=”&AF5&AG5&”&Bcc=”&I4&”&Body=”&AI5&T4&G4&H4&Q4&S4,”EMAIL”)
    The VBA method 2 you have shown looks similar to what I need but without the “IF >2000” addition.
    I have also never attempted VBA before, so I was going to try and copy and paste your VBA and edit it to what I need but I am not that talented just yet!

    Thanks for your help

    • Hello Danielle D, Thank you for your question. For the first question, you can add a line break using the CHAR function. CHAR(10) to be more specific. There are some feature limitations in the HYPERLINK method. You need to use the other methods to do more advanced stuff.

      Then, for the second question, if you send your Excel file to [email protected], we will try to modify the VBA code according to your needs.

  4. Is it possible to send images from excel via e-mail at a specific time every day automatically not manually?

    • Hello Ahmed, thank you for reaching out. You can send email in a certain time of a day automatically, but you have to keep the Excel file open. One more thing, you cannot send email automatically by Excel everyday. You have to set up the time and then run the Macro. The code is given below.

      Option Explicit
      Private Sub Workbook_Open()
      Application.OnTime TimeValue("00:48:00"), "ImageMail"
      End Sub
      Sub ImageMail()
      Dim strEmailAddress As String
      Dim strFirstName As String
      Dim strLastName As String
      Dim appOutlook As Object
      Set appOutlook = CreateObject("Outlook.Application")
      strEmailAddress = "[email protected]"
      Dim mimEmail As Outlook.MailItem
      Dim strPicPath As String
      strPicPath = "C:\Users\DELL\Desktop\blogs\blog 111\how to change bin range in excel histogram (1).png"
      Set mimEmail = appOutlook.CreateItem(olMailItem)
      With mimEmail
      .To = strEmailAddress
      .Subject = "Send Email"
      Dim att As Outlook.Attachment
      Set att = .Attachments.Add(strPicPath, 1, 0)
      .HTMLBody = "<html><h2>Reminder</h2><p>Hello there, here's your solution!</p>" & _
      "<img src=""how to change bin range in excel histogram (1).png""></html>"
      .Send
      End With
      End Sub

      In the picture, I’m providing you some direction regarding where you may need to change the code element.

      Note: If the code doesn’t work, make sure you have an Outlook account and open the Microsoft Office App.

  5. Great post!

  6. I would like to know the VBA or Macro to use on a spreadsheet where I want to email my client but want the email to be one of my Outlook Templates already created. So, if I click on the client’s email address from the spreadsheet or click on a Macro button in the clients contact information row, it launches my Outlook Template filling in the client’s email address and inserts their name at the beginning of the body message.

    Is this possible? I’m struggling to find a video or web pages to show how this is done.

    • Reply Avatar photo
      assign Rubayed Razib Suprov Feb 16, 2023 at 4:39 PM

      Thanks a lot for posting your query in Exceldemy
      Below I am giving you a VBA code using which you can open the outlook template saved on your pc and then replace them with desired text from the Excel sheet.

      
      Sub EmailClient()
          Dim OutApp As Object
          Dim OutMail As Object
          Dim strbody As String
          Dim clientName As String
          
          ' Get the client's email address from the selected cell
          Dim email As String
          email = Selection.Value
          
          ' Get the client's name from the first column of the selected row
          clientName = Cells(Selection.Row, 1).Value
          
          ' Create the email body using your Outlook template
          ' Replace "TemplateName" with the name of your Outlook template
          Set OutApp = CreateObject("Outlook.Application")
          Set OutMail = OutApp.CreateItemFromTemplate("C:\Users\user\Documents\OutlookTemplate.oft")
          
          ' Replace "Client Name" with the name of your client field in the template
          strbody = Replace(OutMail.HTMLBody, "Name", clientName)
          OutMail.HTMLBody = strbody
          
          ' Set the recipient email address
          OutMail.To = email
          
          ' Display the email and let the user edit it before sending
          OutMail.Display
          
          ' Clean up
          Set OutMail = Nothing
          Set OutApp = Nothing
      End Sub
      

      the sample template file that we are using is given below.
      The Name, in the beginning, is going to be replaced by the desired name and the recipient will be the selected mail address.

      In the code, two separate things must be taken seriously, firstly the location of the template file. The location of the template mail has to be specified correctly in the code(Marked as 1), as shown in the image. So please rewrite the location of the file correctly.
      secondly, f you need to specify which term to replace with names inside the code(Marked as 2).

      the location of the template file in your pc can be found in the properties tab as shown below.

      finally, you are ready to execute the code.For this, you have to first select the email address to which you want to send the email. Then Run the Macro by pressing the Macro button placed just right side of the information.

      Then you can see that the a new email has been composed with the name placed in the beginning with the selected mail address as the recipient.

      You can download the sample macro file from the links below
      Sample Macro File: https://www.exceldemy.com/wp-content/uploads/2023/02/Send-Automatic-Email-outlook-template.xlsm\
      In case you need to template file, please contact us through email.
      Regards,
      Rubayed Razib

  7. How to add Attachement in Method 1

    • Reply Avatar photo
      Alif Bin Hussain Mar 9, 2023 at 5:38 PM

      Hello SANJAY DANGI,

      Thank you for reaching out. You can add attachment to the email in the first method easily. Follow these steps to do it.

      • In this example, we want to attach a file named Attachment.pdf. The path directory for the file is D:\Exceldemy\.

      How to Send Automatic Email from Excel to Outlook with Attachment

      • First, download the workbook provided in this article and open it.
      • Next, add a new column (H) and write the file names you want to attach to the email. Make sure to write the file extension.

      How to Send Automatic Email from Excel to Outlook with Attachment

      • Then, open the code module and write the following code.

      Sub ExcelToOutlookSR() Dim mApp As Object Dim mMail As Object Dim SendToMail As String Dim MailSubject As String Dim MailBody As String Dim FileName As String Dim Path As String 'Declare variable for file path Path = "D:\Exceldemy\" 'Set file path For Each r In Selection SendToMail = Range("C" & r.Row) MailSubject = Range("F" & r.Row) MailBody = Range("G" & r.Row) FileName = Range("H" & r.Row) 'Get file name from H column Set mApp = CreateObject("Outlook.Application") Set mMail = mApp.CreateItem(0) With mMail .To = SendToMail .Subject = MailSubject .Body = MailBody .Display .Attachments.Add (Path & FileName) 'Add attachment End With Next r Set mMail = Nothing Set mApp = Nothing End Sub
      How to Send Automatic Email from Excel to Outlook with Attachment

      • After writing this code, go back to the excel sheet.
      • Then, select one or more names and click on the button.

      How to Send Automatic Email from Excel to Outlook with Attachment

      • As a result, Microsoft Outlook software will open and you will find the email already written with the attached file. You can just click send to send the Email.

      How to Send Automatic Email from Excel to Outlook with Attachment

  8. how to include a mail body bigger than 255 characters

    • Reply Avatar photo
      Naimul Hasan Arif Sep 7, 2023 at 12:46 PM

      Hello SAPTARSHI,
      I have personally sent a mail with a mail body of more than 255 characters via the “Using VBA Macro to Automatically Send Email Using Outlook to Selected Recipients” method. The receiver got the mail with the full mail body. I have used Microsoft 365 and found no character restriction in this process.
      Regards,
      Naimul Hasan Arif

  9. Hi, thank you for this super helpful document! I’m wondering whether it is possible to send the email from another account I have from Outlook. It automatically sends it from my personal account but I would like it to send from my second account. Thank you!

    • Reply Abrar-ur-Rahman Niloy
      Abrar-ur-Rahman Niloy Oct 25, 2023 at 12:27 PM

      Hi, Jessica!

      Yes, it is possible. In short, Outlook assigns every email of yours to a number. You can call a specific mail using the Accounts.Item(x) method, x is the number assigned to the mail. Mention this account in the MailItem.SendUsingAccount property and the code will send the mail from that specific account. Keep in mind, the process works for Excel 2007 and later versions.

      Here is the details of the process:

      1. First, check the Microsoft Outlook 15.0 Object Library in VBA editor from the Tools>References>Available References.
        (This is to enable the Outlook library in your Excel workbook)
      2. If you want to find out the numbers associated with each mail, use a code utilizing the Accounts.Item method like the following.
        Sub EmailAccountsList()
        
            Dim OutMail As Outlook.Application
            Dim i As Long
            Dim MailRow As Long
            MailRow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
          
            Set OutMail = CreateObject("Outlook.Application")
        
            For i = 1 To OutMail.Session.Accounts.Count
                Sheet1.Cells(MailRow, 1) = OutMail.Session.Accounts.Item(i)
                Sheet1.Cells(MailRow, 2) = i
                MailRow = MailRow + 1
            Next i
        
        End Sub

        This code will give you the list containing your outlook mails and their numbers on your spreadsheet.

      3. Now, use this number in the SendUsingAccount property. Take the first code in this article, for example. In the With statement of mMail, you can modify it like this:
        
        Sub ExcelToOutlookSR()
        Dim mApp As Object
        Dim mMail As Object
        Dim SendToMail As String
        Dim MailSubject As String
        Dim mMailBody As String
        For Each r In Selection
            SendToMail = Range("C" & r.Row)
            MailSubject = Range("F" & r.Row)
            mMailBody = Range("G" & r.Row)
        Set mApp = CreateObject("Outlook.Application")
        Set mMail = mApp.CreateItem(0)
        With mMail
            .To = SendToMail
            .Subject = MailSubject
            .Body = mMailBody
            .SendUsingAccount = mApp.Session.Accounts(2)   'Replace the number in the bracket with your mail number from the previous code's list
            End With
        Next r
        End Sub
        

      Hope this helped. If you still have inquiries, let us know.

      • Hi! I was able to find the number of the account I want to use (2), but when I use the second part of the code, I get the following error message: Runtime error ‘450’ Wrong number of arguments or invalid property assignment. When I click debug, it highlights the “.SendUsingAccount = mApp.Session.Accounts(2)” line of the code. Do you have any idea what went wrong?

  10. Hi there, thanks for the clear explanation. I was wondering whether it is possible to send the emails from my second Outlook account instead of my primary one. Thanks in advance!

    • Reply Abrar-ur-Rahman Niloy
      Abrar-ur-Rahman Niloy Oct 26, 2023 at 9:58 AM

      Hello again, Jessica! In the previous reply, I have mentioned exactly how you can do this. If you go through the second step, you will find the item number of your second Outlook mail (generally is 2. can also be 1 depending on how you had logged in to your accounts).
      If it isn’t, take note of the number. Replace the 2 in .SendUsingAccount = mApp.Session.Accounts(2) with the number Excel shows. You will find this line in the With statement at the end.
      In case if you are having trouble understanding any of the part, let us know about that.

  11. Reply
    Mary Rose Anne Deriquito Dec 21, 2023 at 9:14 PM

    Hi, how can i add signature with below code?

    Sub ExcelToOutlookSR()
    Dim mApp As Object
    Dim mMail As Object
    Dim SendToMail As String
    Dim MailSubject As String
    Dim mMailBody As String
    For Each r In Selection
    SendToMail = Range(“C” & r.Row)
    MailSubject = Range(“F” & r.Row)
    mMailBody = Range(“G” & r.Row)
    Set mApp = CreateObject(“Outlook.Application”)
    Set mMail = mApp.CreateItem(0)
    With mMail
    .To = SendToMail
    .Subject = MailSubject
    .Body = mMailBody
    .Display ‘ You can use .Send
    End With
    Next r
    End Sub

    • Dear Mary,
      You can use the following code that also includes signature.

      
      Sub ExcelToOutlookSR()
          Dim mApp As Object
          Dim mMail As Object
          Dim SendToMail As String
          Dim MailSubject As String
          Dim mMailBody As String
          Dim Signature As String
          
          ' Your signature text goes here
          Signature = "Best regards," & vbCrLf & "Mary Rose"
          
          For Each r In Selection
              SendToMail = Range("C" & r.Row)
              MailSubject = Range("F" & r.Row)
              mMailBody = Range("G" & r.Row) & vbCrLf & vbCrLf & Signature ' Add the signature
              
              Set mApp = CreateObject("Outlook.Application")
              Set mMail = mApp.CreateItem(0)
              
              With mMail
                  .To = SendToMail
                  .Subject = MailSubject
                  .Body = mMailBody
                  .Display ' You can use .Send
              End With
          Next r
      End Sub
      

      Feel free to customize the Signature accordingly.

      Regards
      Aniruddah
      Team Exceldemy

  12. hi, Please advice how to capture the data from pivot in the body of the mail as per the data range in a table format

    • Reply Avatar photo
      Md. Abdur Rahim Rasel Jan 8, 2024 at 4:59 PM

      Hello KARTHIK!
      Thanks for reaching out and sharing your problem with us.
      I think the article will help you capture the data from pivot in the body of the mail as per the data range in a table format. Please read the article again.
      If you are still facing issues, please mail us at the address below.
      [email protected]
      Again, thank you for being with us.
      Regards
      Md. Abdur Rahim Rasel
      Exceldemy Team

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo