+ Reply to Thread
Results 1 to 3 of 3

Macro to email report

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    07-12-2018
    Location
    South Africa
    MS-Off Ver
    Office 2024
    Posts
    2,873

    Macro to email report

    I have a macro to email and attach a workbook

    I need the workbook to select sheet "Pivot" before attaching the workbook so that when the attached workbook is opened , it opens on sheet "pivot"

     Sub Email_Report()
    Sheets("Pivot").Select
       ThisWorkbook.Activate                           'start in THIS workbook
    ztext = [bodytext]                              'read in text from named cell
    Zsubject = [subjectText]
     
      Dim OutApp As Object
        Dim OutMail As Object
    
        Set OutApp = CreateObject("Outlook.Application")
        Set OutMail = OutApp.CreateItem(0)
    
        With OutMail
    
          
                .To = Sheets("Email").Range("t1:T1").Value
    
                .CC = Join(Application.Transpose(Sheets("email").Range("T2:T5").Value), ";")
                
                .BCC = ""
                .Subject = Zsubject
               .Body = ztext
              
    
                
                .Attachments.Add ActiveWorkbook.FullName
                
                .Display
              End With
        On Error GoTo 0
    
        Set OutMail = Nothing
        Set OutApp = Nothing
        
       ActiveWorkbook.Save
     
       
        
    End Sub

  2. #2
    Forum Expert KOKOSEK's Avatar
    Join Date
    08-03-2018
    Location
    Pole in Yorkshire, UK
    MS-Off Ver
    365/2013
    Posts
    2,765

    Re: Macro to email report

    Select sheet PIVOT, save it, send it.
    Happy with my answer * Add Reputation.
    If You are happy with solution, please use Thread tools and mark thread as SOLVED.

  3. #3
    Forum Contributor
    Join Date
    07-12-2018
    Location
    South Africa
    MS-Off Ver
    Office 2024
    Posts
    2,873

    Re: Macro to email report

    thanks for the advise. Works perfectly

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Macro to select a column that varies in number of rows from report to report
    By karmadog62 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-13-2019, 04:43 PM
  2. [SOLVED] Email Report from Access
    By bigroo1958 in forum Access Tables & Databases
    Replies: 2
    Last Post: 06-15-2017, 12:07 PM
  3. Replies: 0
    Last Post: 07-27-2015, 01:06 PM
  4. email report based on conditions
    By cascencio83 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-19-2015, 12:36 AM
  5. [SOLVED] Search and email the corresponding report to the User
    By Anand Purushothaman in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-03-2012, 02:14 AM
  6. Send report automatically via email
    By excel5111987 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-10-2011, 11:08 AM
  7. Form Email from Report, Only if Report summary sheet lists Acct for that Sales Rep
    By lukep10 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-28-2008, 01:38 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1