Macro to turn attachment content into text in excel

Mychaltb

New Member
Joined
Nov 15, 2016
Messages
16
Hi experts,

Below is a macro that pulls attachments from an outlook folder and places them into a folder on my desktop. I am now trying to add to or create an additional macro to copy the contents of each file (mostly PDFs) and paste the contents into excel to extract PO numbers. I would then like to re save the initial file with the extracted PO number so that all the files in the folder are now the same 7 digit PO number. I have searched the internet for recommendations but have been unsuccessful. Any help or feedback on this difficult task is greatly appreciated.

Thank you!
Mychal

Public Sub PDF_Attachments()

Dim OlApp As Object
Dim OlMail As Object
Dim OlItems As Object
Dim OlFolder As Object
Dim j As Integer
Dim strFolder As String


On Error Resume Next
Set OlApp = GetObject(, "Outlook.Application")


If Err.Number = 429 Then
Set OlApp = CreateObject("Outlook.Application")
End If


strFolder = ThisWorkbook.Path & "C:\Users\Mychal\Desktop\Invoices"


Set OlFolder = OlApp.getnamespace("MAPI").Folders("Invoices").Folders("inbox")
Set OlItems = OlFolder.Items


For Each OlMail In OlItems
If OlMail.Attachments.Count > 0 Then
For j = 1 To OlMail.Attachments.Count
OlMail.Attachments.Item(j).SaveAsFile strFolder & "" & OlMail.Attachments.Item(j).Filename
Next j
End If
Next


Set OlFolder = Nothing
Set OlItems = Nothing
Set OlMail = Nothing
Set OlApp = Nothing


MsgBox "Done", vbInformation




End Sub
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest

Forum statistics

Threads
1,214,585
Messages
6,120,397
Members
448,957
Latest member
Hat4Life

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top