vba 如何在电子邮件中发送 2 个数据透视表(来自两张工作表)?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/27687596/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-12 05:39:26  来源:igfitidea点击:

How can I send 2 pivot tables (from two sheets) in an Email?

vbaemailexcel-vbapivot-tableoutlook-vba

提问by ella

I have a excel with 2 sheets, each one has a pivot table.

我有一张有 2 张纸的 excel,每张纸都有一个数据透视表。

I want to create a button which automatically send both pivot tables into onemail out.

我想创建一个按钮,自动将两个数据透视表发送到一封邮件中。

I'm able to write the VBA code to send out one pivot but dont know how to send 2 together.

我能够编写 VBA 代码来发送一个支点,但不知道如何将 2 个一起发送。

Here is my code, appreciate the help.

这是我的代码,感谢您的帮助。

Sub Mail_Selection_Range_Outlook_Body()
' You need to use this module with the RangetoHTML subroutine.
' Works in Excel 2000, Excel 2002, Excel 2003, Excel 2007, Excel 2010, Outlook 2000, Outlook 2002, Outlook 2003, Outlook 2007, and Outlook 2010.
    Dim rng As Range
    Dim OutApp As Object
    Dim OutMail As Object

    Set rng = Nothing
    On Error Resume Next
    ' Only send the visible cells in the selection.
    Set rng = Sheets("Supporttab").PivotTables(1).TableRange1



    If rng Is Nothing Then
        MsgBox "The selection is not a range or the sheet is protected. " & _
               vbNewLine & "Please correct and try again.", vbOKOnly
        Exit Sub
    End If

    With Application
        .EnableEvents = False
        .ScreenUpdating = False
    End With

    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)

    On Error Resume Next
    With OutMail
        .To = "[email protected]"
        .CC = ""
        .BCC = ""
        .Subject = "report"
        .HTMLBody = RangetoHTML(rng)
        ' In place of the following statement, you can use ".Display" to
        ' display the e-mail message.
        .display
    End With
    On Error GoTo 0

    With Application
        .EnableEvents = True
        .ScreenUpdating = True
    End With

    Set OutMail = Nothing
    Set OutApp = Nothing
End Sub

RangetoHTML:

范围到HTML

Function RangetoHTML(rng As Range)
' Changed by Ron de Bruin 28-Oct-2006
' Working in Office 2000-2013
    Dim fso As Object
    Dim ts As Object
    Dim TempFile As String
    Dim TempWB As Workbook

    TempFile = Environ$("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"

    'Copy the range and create a new workbook to past the data in
    rng.Copy
    Set TempWB = Workbooks.Add(1)
    With TempWB.Sheets(1)
        .Cells(1).PasteSpecial Paste:=8
        .Cells(1).PasteSpecial xlPasteValues, , False, False
        .Cells(1).PasteSpecial xlPasteFormats, , False, False
        .Cells(1).Select
        Application.CutCopyMode = False
        On Error Resume Next
        .DrawingObjects.Visible = True
        .DrawingObjects.Delete
        On Error GoTo 0
    End With

    'Publish the sheet to a htm file
    With TempWB.PublishObjects.Add( _
         SourceType:=xlSourceRange, _
         Filename:=TempFile, _
         Sheet:=TempWB.Sheets(1).Name, _
         Source:=TempWB.Sheets(1).UsedRange.Address, _
         HtmlType:=xlHtmlStatic)
        .Publish (True)
    End With

    'Read all data from the htm file into RangetoHTML
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
    RangetoHTML = ts.readall
    ts.Close
    RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
                          "align=left x:publishsource=")

    'Close TempWB
    TempWB.Close savechanges:=False

    'Delete the htm file we used in this function
    Kill TempFile

    Set ts = Nothing
    Set fso = Nothing
    Set TempWB = Nothing
End Function

采纳答案by Chrismas007

This should do what you are looking for. Just used a simple string with both ranges:

这应该做你正在寻找的。只使用了两个范围的简单字符串:

Sub Mail_Selection_Range_Outlook_Body()
  '...
  Dim rng As Range, rng2 As Range
  '...
  Set rng = Sheets("Supporttab").PivotTables(1).TableRange1
  Set rng2 = Sheets("Other sheet").PivotTables(#).TableRange#
  '...
      .HTMLBody = RangetoHTML(rng) & vbCrLf & RangetoHTML(rng2)
  '...

回答by Alexander Novas

The other suggested answer does not work because RangetoHTML(rng2) needs to absolutely be RangetoHTML(rng), otherwise the function doesn't work.

另一个建议的答案不起作用,因为 RangetoHTML(rng2) 必须绝对是 RangetoHTML(rng),否则该函数不起作用。

e.g.

例如

  Set rng = Dealswb.Worksheets("Deals").Range("A19:L" & LR2)
    rng2 = RangetoHTML(rng)
    
    Set rng = Dealswb.Worksheets("Deals").PivotTables("PivotTable2").TableRange1
    rng3 = RangetoHTML(rng)
    

        
    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)

    With OutMail
    .Display
    End With

    With OutMail
    .To = "[email protected]"
    '.CC = strCC
    .BCC = ""
    .Subject = "Deal Summary " & Format(TodayDate, "MM/DD/YYYY")
    .HTMLBody = rng3 & "<br>" & rng2
    .Display
    End With

    Set OutMail = Nothing
    Set OutApp = Nothing