Searching through outlook body for 'keyword'

owen4512

Board Regular
Joined
Dec 10, 2014
Messages
71
Hi all,

I've found and adapted the below after doing some searching online however I'm having some difficulties in adapting the code to my needs. The below currently searches through one of my subfolders in outlook for the value in sheet1.range("G1"). The issue I'm having is the below doesn't return all results. What I want the below to do is, continue searching through the full subfolder and list all results on sheet1 starting in cell A2.

I'm new outlook vba and would really appreciate some help on this :)

VBA Code:
Option Explicit
Public Sub Search_Outlook_Emails()
 Dim outApp As Outlook.Application
 Dim outNs As Outlook.Namespace
 Dim outStartFolder As Outlook.MAPIFolder
 Dim foundEmail As Outlook.MailItem
 
 Set outApp = New Outlook.Application
 Set outNs = outApp.GetNamespace("MAPI")
 
 'Start at Inbox's parent folder
 'Set outStartFolder = outNs.GetDefaultFolder(Outlook.olFolderInbox).Parent
 
 'Or start at folder selected by user
 Set outStartFolder = outNs.Folders("owen@testemail.com").Folders("Inbox").Folders("BI")
 If Not outStartFolder Is Nothing Then
 
 Set foundEmail = Find_Email_In_Folder(outStartFolder, Sheet1.Range("G1").Value)
 
 End If
End Sub

VBA Code:
Private Function Find_Email_In_Folder(outFolder As Outlook.MAPIFolder, findText As String) As Outlook.MailItem
 
 Dim outItem As Object
 Dim outMail As Outlook.MailItem
 Dim outSubFolder As Outlook.MAPIFolder
 Dim i As Long

 Debug.Print outFolder.FolderPath
 
 Set Find_Email_In_Folder = Nothing
 
 'Search emails in this folder
 
 i = 1
 While i <= outFolder.Items.Count And Find_Email_In_Folder Is Nothing
 
 Set outItem = outFolder.Items(i)
 
 If outItem.Class = Outlook.OlObjectClass.olMail Then
 
 'Does the findText occur in this email's body text?
 
 Set outMail = outItem
 If InStr(1, outMail.Body, findText, vbTextCompare) > 0 Then Set Find_Email_In_Folder = outMail
 
sheet1.Cells( i +1, "A").Value = outItem.CreationTime
sheet1.Cells( i +1, "B").Value = outItem.Subject

 End If
 
 i = i + 1
 
 Wend
 
 DoEvents
 
 'If not found, search emails in subfolders
 
 i = 1
 While i <= outFolder.Folders.Count And Find_Email_In_Folder Is Nothing
 
 Set outSubFolder = outFolder.Folders(i)
 
 'Only check mail item folders
 
 If outSubFolder.DefaultItemType = Outlook.olMailItem Then Set Find_Email_In_Folder = Find_Email_In_Folder(outSubFolder, findText)
 
 i = i + 1
 
 Wend
 
End Function
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,214,832
Messages
6,121,847
Members
449,051
Latest member
excelquestion515

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