如何将Excel工作表中的文本和图表复制到Outlook正文? [英] How to copy text and charts in an Excel sheet to Outlook body?

查看:336
本文介绍了如何将Excel工作表中的文本和图表复制到Outlook正文?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将Excel工作表中的文本(单元格的恒定范围)和图表复制到Outlook正文中,但是到目前为止,我仅复制了图表,而不复制了文本.我想知道将文本(在选定范围内)和图表从Excel工作表复制到Outlook消息的最佳方法.下面是我现在使用的代码.此代码确实粘贴了文本,但是图表在文本上重叠(当图表粘贴在电子邮件正文中时).我想如何格式化Outlook电子邮件并粘贴文本和图表而不重叠.

I am trying to copy text (Constant Range of Cells) and charts in an excel sheet to an outlook body, however so far I succeeded in copying only charts but not text. I want to know the best way to copy both text (in the selected range) and charts from excel sheet to outlook message. Below is the code I am using now. This code does paste the text but charts are overlapped on the text (when charts are pasted in the email body). I would like to how can I format the outlook email and paste the text and charts without overlapping.

Sub email_Charts(sFileName, Subject1)
Dim r As Integer
Dim o As Outlook.Application
Dim m As Outlook.MailItem
Dim wEditor As Word.Document
Set o = New Outlook.Application
Dim olTo As String

Windows("Daily_Status_Macro_Ver3.0.xlsm").Activate
Sheets("Main").Select
olTo = Worksheets("Main").Cells(3, 3).Value

Windows(sFileName).Activate

msg = "<HTML><font face = Calibri =2>"
msg = msg & "Hi All, <br><br>"
msg = msg & "Please find Daily Status Below "
msg = msg & "<b><font color=#0033CC>"
msg = msg & Sheets(1).Range("B2:B4")


    Set m = o.CreateItem(olMailItem)
    m.To = olTo

    m.Subject = Subject1
    m.BodyFormat = olFormatHTML
    m.HTMLBody = msg
    m.Display

 Windows(sFileName).Activate
 Sheets(1).Select
 ActiveSheet.DrawingObjects.Select
 Selection.Copy
 Set wEditor = o.ActiveInspector.wordeditor
 m.Body = msg
 wEditor.Application.Selection.Paste
 'm.send

    Workbooks(sFileName).Close SaveChanges:=False
End Sub

推荐答案

也许是这样的:

Sub createJpg(Namesheet As String, nameRange As String, nameFile As String)
    ThisWorkbook.Activate
    Worksheets(Namesheet).Activate
    Set Plage = ThisWorkbook.Worksheets(Namesheet).Range(nameRange)
    Plage.CopyPicture
    With ThisWorkbook.Worksheets(Namesheet).ChartObjects.Add(Plage.Left, Plage.Top, Plage.Width, Plage.Height)
        .Activate
        .Chart.Paste
        .Chart.Export Environ$("temp") & "\" & nameFile & ".jpg", "JPG"
    End With
    Worksheets(Namesheet).ChartObjects(Worksheets(Namesheet).ChartObjects.Count).Delete
Set Plage = Nothing
End Sub

并在您现有的代码中:

Set appOutlook = CreateObject("outlook.application")
'create a new message
Set Message = appOutlook.CreateItem(olMailItem)
With Message
    .HTMLBody = "Hello" ' and whatever else you need in the text body
    'first we create the image as a JPG file
    Call createJpg("Dashboard", "B8:H9", "DashboardFile")
    'we attached the embedded image with a Position at 0 (makes the attachment hidden)
    TempFilePath = Environ$("temp") & "\"
    .Attachments.Add TempFilePath & "DashboardFile.jpg", olByValue, 0

    'Then we add an html <img src=''> link to this image
    'Note than you can customize width and height - not mandatory

    .HTMLBody = .HTMLBody & "<br><B>WEEKLY REPPORT:</B><br>" _
        & "<img src='cid:DashboardFile.jpg'" & "width='814' height='33'><br>" _
        & "<br>Best Regards,<br>Ed</font></span>"

    .To = "contact1@email.com; contact2@email.com"
    .Cc = "contact3@email.com"

    .Display
    '.Send
End With

这篇关于如何将Excel工作表中的文本和图表复制到Outlook正文?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆