使用 Excel VBA 自动合并邮件

Hem*_*ema 2 excel merge vba ms-word

我在 Excel 中创建了一个宏,我可以在其中将 Excel 中的数据通过邮件合并到 Word 信函模板中,并将各个文件保存在文件夹中。

我在 Excel 中有员工数据,我可以使用该数据生成任何员工信函,并且可以根据员工姓名保存单个员工信函。

我已经自动运行邮件合并并根据员工姓名保存单个文件。并且每次为一个人运行该文件时,它都会将状态设为 Letter Already Generate,这样它就不会复制任何员工记录。

问题是所有合并文件中的输出与第一行相同。示例:如果我的 Excel 有 5 个员工详细信息,我可以在每个员工姓名上保存 5 个单独的合并文件,但是如果第 2 行中的第一个员工的合并数据。

我的行有以下数据:

A 行:有 S.No.
行 B:有员工姓名
行 C:有处理日期
行 D:有地址
行 E:名字
行 F:业务标题
行 G:显示状态(如果生成信件,则在运行宏后显示“信件已生成”或如果是新记录,则显示为空白。

另外,如何将输出(合并文件)也保存在 DOC 文件以外的 PDF 中,以便合并后的文件采用两种格式,一种是 DOC,另一种是 PDF 格式?

Sub MergeMe()

Dim bCreatedWordInstance As Boolean
Dim objWord As Word.Application
Dim objMMMD As Word.Document
Dim EmployeeName As String
Dim cDir As String
Dim r As Long
Dim ThisFileName As String
lastrow = Sheets("Data").Range("A" & Rows.Count).End(xlUp).Row
r = 2
For r = 2 To lastrow
If Cells(r, 7).Value = "Letter Generated Already" Then GoTo nextrow
EmployeeName = Sheets("Data").Cells(r, 2).Value

' Setup filenames
Const WTempName = "letter.docx" 'This is the 07/10 Word Templates name,  Change as req'd
Dim NewFileName As String
NewFileName = "Offer Letter - " & EmployeeName & ".docx" 'This is the New 07/10 Word Documents File Name, Change as req'd"

' Setup directories
cDir = ActiveWorkbook.path + "\" 'Change if appropriate
ThisFileName = ThisWorkbook.Name

On Error Resume Next

' Create a Word Application instance
bCreatedWordInstance = False
Set objWord = GetObject(, "Word.Application")

If objWord Is Nothing Then
  Err.Clear
  Set objWord = CreateObject("Word.Application")
  bCreatedWordInstance = True
End If

If objWord Is Nothing Then
MsgBox "Could not start Word"
Err.Clear
On Error GoTo 0
Exit Sub
End If

' Let Word trap the errors
On Error GoTo 0

' Set to True if you want to see the Word Doc flash past during construction
objWord.Visible = False

'Open Word Template
Set objMMMD = objWord.Documents.Open(cDir + WTempName)
objMMMD.Activate

'Merge the data
With objMMMD
.MailMerge.OpenDataSource Name:=cDir + ThisFileName, sqlstatement:="SELECT *  FROM `Data$`"   ' Set this as required

With objMMMD.MailMerge  'With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.SuppressBlankLines = True
With .DataSource
  .FirstRecord = wdDefaultFirstRecord
  .LastRecord = wdDefaultLastRecord
End With
.Execute Pause:=False
End With
End With

' Save new file
objWord.ActiveDocument.SaveAs cDir + NewFileName

' Close the Mail Merge Main Document
objMMMD.Close savechanges:=wdDoNotSaveChanges
Set objMMMD = Nothing

' Close the New Mail Merged Document
If bCreatedWordInstance Then
objWord.Quit
End If

0:
Set objWord = Nothing
Cells(r, 7).Value = "Letter Generated Already"
nextrow:

Next r

End Sub
Run Code Online (Sandbox Code Playgroud)

Opi*_*Dad 5

要将文件保存为 pdf 格式,请使用

objWord.ActiveDocument.ExportAsFixedFormat cDir & NewFileName, _
                  ExportFormat:=wdExportFormatPDF
Run Code Online (Sandbox Code Playgroud)

在我看来,当您执行邮件合并时,它应该创建一个包含所有字母的文件,因此当您打开它时,看起来第一个字母是要保存的字母,但是如果您向下滚动保存的 word 文件,您可能会在新页面上找到每个字母。

相反,您希望一次执行一个字母的合并。
要解决此问题,请按如下方式更改行:

With .DataSource
  .FirstRecord = r-1
  .LastRecord = r-1
  .ActiveRecord = r-1
Run Code Online (Sandbox Code Playgroud)

您需要使用,r-1因为 Word 将使用其数据集中的记录号,并且由于数据从第 2 行开始,并且计数器r与该行相关,因此您需要r-1.

您不需要每次都打开 word,因此将所有设置邮件合并数据源和创建 word doc 的代码放在主循环之外。

Const WTempName = "letter.docx" 'This is the 07/10 Word Templates name,  
Dim NewFileName As String

' Setup directories
cDir = ActiveWorkbook.path + "\" 'Change if appropriate
ThisFileName = ThisWorkbook.Name

On Error Resume Next

' Create a Word Application instance
bCreatedWordInstance = False
Set objWord = GetObject(, "Word.Application")

If objWord Is Nothing Then
  Err.Clear
  Set objWord = CreateObject("Word.Application")
  bCreatedWordInstance = True
End If

If objWord Is Nothing Then
    MsgBox "Could not start Word"
    Err.Clear
    On Error GoTo 0
    Exit Sub
End If

' Let Word trap the errors
On Error GoTo 0

' Set to True if you want to see the Word Doc flash past during construction
objWord.Visible = False

'Open Word Template
Set objMMMD = objWord.Documents.Open(cDir + WTempName)
objMMMD.Activate

'Merge the data
With objMMMD
.MailMerge.OpenDataSource Name:=cDir + ThisFileName, _
    sqlstatement:="SELECT *  FROM `Data$`"   ' Set this as required

For r = 2 To lastrow
    If Cells(r, 7).Value = "Letter Generated Already" Then GoTo nextrow
'rest of code goes here
Run Code Online (Sandbox Code Playgroud)

此外,您可以在合并文档后执行此操作,而不是检查员工姓名的 Excel 文件以创建文件名。对我来说,将文件名链接到刚刚合并的字母会更直观一些。为此,将该行进一步更新为:

With .DataSource
  .FirstRecord = r-1
  .LastRecord = r-1
  .ActiveRecord = r-1
  EmployeeName = .EmployeeName 'Assuming this is the field name
Run Code Online (Sandbox Code Playgroud)

然后在保存文件之前,您可以执行以下操作:

 ' Save new file
NewFileName = "Offer Letter - " & EmployeeName & ".docx"
objWord.ActiveDocument.SaveAs cDir + NewFileName
Run Code Online (Sandbox Code Playgroud)

希望这可以帮助。