Advertisement
Guest User

ExcelDeath

a guest
Nov 30th, 2021
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub PivotTabletoOutlook()
  2.  
  3. 'Declare Outlook Variables.
  4. Dim oLookApp As outlook.Application
  5. Dim oLookItm As outlook.MailItem
  6. Dim oLookIns As outlook.Inspector
  7.  
  8. 'Declare Word Variables
  9. Dim oWrdDoc As Word.Document
  10. Dim oWrdRng As Word.Range
  11.  
  12. 'Declare Excel Variables
  13. Dim PvtTbl As PivotTable
  14. Dim PvtRng As Range
  15. Dim FilterRng As Range
  16. Dim FilterName As Range
  17. Dim TM As String
  18. Dim PvtNameField As PivotField
  19. Dim edress As String
  20.  
  21.  
  22. 'Grab the Active Outlook Application if it exists.
  23. On Error Resume Next
  24.  
  25. 'Try and grab Active instance.
  26. Set oLookApp = GetObject(, "Outlook.Application")
  27.    
  28.     'If there is an error, create new instance of Outlook.
  29.    If Err.Number = 429 Then
  30.        
  31.         'Clear the error
  32.        Err.Clear
  33.        
  34.         'Create the Outlook App
  35.        Set oLookApp = New outlook.Application
  36.        
  37.     End If
  38.  
  39. 'Grab the Pivot Table Object.
  40. Set PvtTbl = ThisWorkbook.Worksheets("Data").PivotTables("PivotTable1")
  41.     Debug.Print PvtTbl.Name
  42.  
  43. 'Grab the Filter Range in the Pivot Table Sheet
  44. 'Set FilterRng = ThisWorkbook.Worksheets("Data").Range("Filter_TM")
  45.  
  46. 'Grab smaller range for testing
  47. Set FilterRng = ThisWorkbook.Worksheets("Data").Range("K5:K7")
  48.  
  49. edress = ActiveSheet.Range("K2").Value
  50.     Debug.Print edress
  51.  
  52. 'Loop through each TM
  53. For Each FilterName In FilterRng
  54.  
  55.     'Grab TM name
  56.    TM = FilterName.Value
  57.    
  58.     'Clear all the filters
  59.    PvtTbl.ClearAllFilters
  60.    
  61.     'Grab TM Filed
  62.    Set PvtNameField = PvtTbl.PivotFields("TM")
  63.        
  64.         'Set the Filter
  65.        PvtNameField.CurrentPage = TM
  66.    
  67.     'Grab pivot table range
  68.    Set PvtRng = PvtTbl.TableRange2
  69.     'Set PvtRng = PvtTbl.TableRange1
  70.  
  71.     'Create a new Email
  72.    Set oLookItm = oLookApp.CreateItem(olMailItem)
  73.  
  74.  
  75.     'With the new Email
  76.    With oLookItm
  77.         .To = edress
  78.         .Subject = "Pivot Table Report Test"
  79.         .Body = "Trying to get it to paste"
  80.    
  81.         'Display the email
  82.        .Display
  83.    
  84.         'Get the Active Inspector
  85.        Set oLookIns = .GetInspector
  86.    
  87.         'Grab the Word Editor
  88.        Set oWordDoc = oLookIns.WordEditor
  89.    
  90.         'Copy the Pivot Table Range
  91.        PvtRng.Copy
  92.    
  93.         'Pause it for a second or two
  94.        Application.Wait Now() + #12:00:01 AM#
  95.    
  96.         'Define the Range in the Email we want to Paste to the Pivot Table.
  97.        Set oWrdRng = oWrdDoc.Application.ActiveDocument.Content
  98.        
  99.             'Collapse the range.
  100.            oWrdRng.Collapse Direction:=wdCollapseEnd
  101.        
  102.         'Insert a new Paragraph.
  103.        Set oWrdRng = oWrdDoc.Paragraphs.Add
  104.        
  105.             'Make sure there is space between paragraph and content
  106.            oWrdRng.InsertBreak
  107.    
  108.         'Paste pivot table in email
  109.        oWrdRng.PasteSpecial DataType:=wdPasteOLEObject, Link:=False
  110.    
  111.     End With
  112.  
  113. Next
  114.  
  115. End Sub
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement