将带有负时间的Excel表粘贴到Outlook电子邮件中

时间:2018-03-01 17:23:22

标签: excel vba excel-vba outlook

我正在编写一些VBA来使用Outlook自动通过电子邮件发送Excel表格。通常情况下,这不是问题,除了这次,表格可能包含一些负时间值。

在源文件中,我已将日期格式切换为1904.但是当我使用下面的代码时,当电子邮件发送时,负值将被粘贴为主题标签#########。有没有办法将表粘贴到Outlook并显示负值?

非常感谢任何帮助。

Sub Mail_Selection_Range_Outlook_Body()

    Dim rng As Range
    Dim OutApp As Object
    Dim OutMail As Object
    Dim StrBody As String

    Set rng = Nothing
    'Select dynamic range
    Range("A1").Select
    Selection.End(xlToRight).Select
    Selection.End(xlDown).Select
    ActiveCell.Offset(2, 0).Select
    Range(Selection, Selection.End(xlToRight)).Select
    Range(Selection, Selection.End(xlUp)).Select
    Range(Selection, Selection.End(xlUp)).Select
    On Error Resume Next
    'Only the visible cells in the selection
    Set rng = Selection.SpecialCells(xlCellTypeVisible)
    On Error GoTo 0

    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

    StrBody = "Good morning Team...."

    StrBody2 = "<br>" & _
               "Explanation about the report" & _
               "Thank You," & "<br>" & _
               "Training Analytics"

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

    rng.Copy


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

    On Error Resume Next
    With OutMail
        .sentonbehalfofname = "ourBox@something.com"
        .To = "ThierBox@something.com"
        .CC = ""
        .BCC = ""

        If Weekday(Date) = 7 Then
            .Subject = "Training Usage Report WE_" & Format((Date), "mm.dd.yy")
        Else
            .Subject = "Training Usage Report WE_" & Format((Date - Weekday(Date)), "mm.dd.yy")
        End If

        .HTMLBody = StrBody & RangetoHTML(rng) & StrBody2
        '.Send
        .Display
    End With
    On Error GoTo 0

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

    Set OutMail = Nothing
    Set OutApp = Nothing
End Sub

Function RangetoHTML(rng As Range)

    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

0 个答案:

没有答案