【发布时间】:2017-12-07 06:20:43
【问题描述】:
我是编程新手,一直在 Excel 中使用 VBA(宏记录器)。
我将每月收到大约 500 份大宗支出、收入、预算报告,这些报告都有自己独特的主题行。一个示例主题行是“Report 001”,我想将 Excel 附件另存为“Project A 2016”。如果主题是“Report 002”,则将文件另存为“Project B 2015”等。
另一个想法是使用 vLookup 引用 Excel 表来保存文件名是合适的。这又是全新的,我缺乏方向。
** 更新 ** 2017 年 7 月 7 日
符合我需要的代码发布在下面。代码基于http://www.fontstuff.com/outlook/oltut01pfv.htm。
代码接收具有特定主题的电子邮件,并将具有特定命名约定的文件保存在我的桌面上。
我可以让我的代码更有效率吗?由于这是一个包含 4 个电子邮件主题的块,并且我可以批量接收超过 500 个,是否可以创建一个引用 csv 文件或其他内容的循环?
Sub GetAttachments6()
' This Outlook macro checks a named subfolder in the Outlook Inbox
' (here the "Sales Reports" folder) for messages with attached
' files of a specific type (here file with an "xls" extension)
' and saves them to disk. Saved files are timestamped. The user
' can choose to view the saved files in Windows Explorer.
' NOTE: make sure the specified subfolder and save folder exist
' before running the macro.
On Error GoTo SaveAttachmentsToFolder_err
' Declare variables
Dim ns As NameSpace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim i As Integer
Dim varResponse As VbMsgBoxResult
Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = Inbox.Folders("AutoRunReport") ' Enter correct subfolder name.
i = 0
' Check subfolder for messages and exit of none found
If SubFolder.Items.Count = 0 Then
MsgBox "There are no messages in the AutoRunReport folder.", vbInformation, _
"Nothing Found"
Exit Sub
End If
' Check each message for attachments
For Each Item In SubFolder.Items
For Each Atmt In Item.Attachments
If Left(Item.Subject, 36) = "Monthly Auto Gen Report CY LD01_0210" Then
FileName = "C:\Users\drowan\Desktop\TestTestTest\" & "LAB 2016 11 ENY 2016 0290000210 ADMIN" & ".pdf"
Atmt.SaveAsFile FileName
i = i + 1
End If
If Left(Item.Subject, 36) = "Monthly Auto Gen Report PY LD01_0210" Then
FileName = "C:\Users\drowan\Desktop\TestTestTest\" & "LAB 2016 11 ENY 2015 0290000210 ADMIN" & ".pdf"
Atmt.SaveAsFile FileName
i = i + 1
End If
If Left(Item.Subject, 37) = "Monthly Auto Gen Report PPY LD01_0210" Then
FileName = "C:\Users\drowan\Desktop\TestTestTest\" & "LAB 2016 11 ENY 2014 0290000210 ADMIN" & ".pdf"
Atmt.SaveAsFile FileName
i = i + 1
End If
If Left(Item.Subject, 36) = "Monthly Auto Gen Report CY LD01_0215" Then
FileName = "C:\Users\drowan\Desktop\TestTestTest\" & "LAB 2016 11 ENY 2016 0290000215 HR" & ".pdf"
Atmt.SaveAsFile FileName
i = i + 1
End If
Next Atmt
Next Item
' Show summary message
If i > 0 Then
varResponse = MsgBox("I found " & i & " attached files." _
& vbCrLf & "I have saved them into the C:\Desktop\TestTestTest folder." _
& vbCrLf & vbCrLf & "Would you like to view the files now?" _
, vbQuestion + vbYesNo, "Finished!")
' Open Windows Explorer to display saved files if user chooses
If varResponse = vbYes Then
Shell "Explorer.exe /e,C:\Users\drowan\Desktop\TestTestTest\", vbNormalFocus
End If
Else
MsgBox "I didn't find any attached files in your mail.", vbInformation, "Finished!"
End If
' Clear memory
SaveAttachmentsToFolder_exit:
Set Atmt = Nothing
Set Item = Nothing
Set ns = Nothing
Exit Sub
' Handle Errors
SaveAttachmentsToFolder_err:
MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: GetAttachments" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"
Resume SaveAttachmentsToFolder_exit
End Sub
【问题讨论】:
-
到目前为止你做了什么?请发布一些代码。
-
我并不完全清楚您要做什么。是否要将来自同一主题的邮件中的附件组合在一起?如果是这样,您可以编写代码来遍历您的电子邮件集合并保存其附件,而不是全部保存在同一个文件夹中,而是保存在以电子邮件主题命名的子文件夹中。您将不得不避开一些陷阱,例如主题中可能出现的在文件夹名称中无效的字符,但它可能会满足您的需求。
-
嗨,您可能需要参考stackoverflow.com/questions/15531093/… 并对其进行编辑以使用
.subject属性来确定文件名等。 -
感谢您的帖子,它们确实有帮助,我对 VBA 的基本结构和语法有疑问。
-
我已经发布了一些代码供您尝试。请您发布更多“主题行”---“保存的文件名”关系,以便我可以改进两者之间的翻译公式
标签: vba email outlook email-attachments