get count of all emails with same conversation ID

Status
Not open for further replies.

Iqbal Khan

New Member
Outlook version
Outlook 2013 64 bit
Email Account
POP3
I am trying to move emails with same conversation id to a folder.

Right now I am using loop to search all the emails to look for conversation ID and move the email However the Inbox has more than 4000 emails in it hence it is taking time as I am trying to move the emails in Inbox in the Item_send event.

Is there a faster way to get the count of emails with similar conversation id so that I can break the once all the emails are found.

thank you.
 
Thank You, Diane

I used restrict to limit the results to the given conversation id and was able to do it as below.

Code:
Set sitems = Ns.GetDefaultFolder(olFolderInbox).Items.Restrict("[ConversationTopic]='" & UMail.ConversationTopic & "'")
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
P Is it possible to sort emails by COUNT of "From" field? Using Outlook 2
V Macro to count flagged messages? Using Outlook 2
T outlook 2010 mail item count doesnt match display Outlook VBA and Custom Forms 3
Diane Poremsky Change Item Count on All Folders in a Data File Using Outlook 0
C Unread email count not displaying on Inbox sub-folders Using Outlook 0
L A realtime Outlook user inbox count Using Outlook 5
M Nested distribution lists: how to count UNIQUE # of people... Outlook VBA and Custom Forms 13
M using Folders.Count in Excel Vba Outlook VBA and Custom Forms 8
R VBA to count email Subject names Using Outlook 1
E Strange Send/Receive count Using Outlook 3
B Day count in rules gets changed in Office for Mac 2011 Using Outlook 1
C Message Count not updating Using Outlook 2
A Comprehensive count of items in a PST Using Outlook 2
D Outlook 2010 - Advanced Find - No Status Bar = No Item Count Using Outlook 2
G recurring meeting exceptions count not updated Outlook VBA and Custom Forms 3
S Count of Contacts In Current View BCM (Business Contact Manager) 1
J Outlook 2007 items.count incorrect Outlook VBA and Custom Forms 2
H daily email count in Outlook Using Outlook 3
T Outlook is categorizing emails incorrectly Using Outlook 1
H Move Selected emails to Local Drive Outlook VBA and Custom Forms 0
D Delete Outlook emails from MS server Using Outlook 12
G Creating Macro to scrape emails from calendar invite body Outlook VBA and Custom Forms 6
A Flagged Emails highlighted in yellow Using Outlook 2
P Search folder: all emails sent to or from a domain Using Outlook 1
J Macro to Reply to Emails w/ Template Outlook VBA and Custom Forms 3
G Save emails as msg file from Outlook Web AddIn (Office JS) Outlook VBA and Custom Forms 0
T Outlook 2010 Sub accounts not showing new emails in Inbox Using Outlook 4
Nufc1980 Outlook "Please treat this as private label" auto added to some emails - Help. Using Outlook 3
humility36 Cannot move emails to archive - 440 error Outlook VBA and Custom Forms 1
E Edit incoming emails to remove a certain sentence added by the "system" Using Outlook 1
R Saving Emails and Attachments as .msg file Using Outlook 3
F Color code certain INBOX emails Using Outlook 2
J gmail and deleted emails. Using Outlook 0
Z Outlook 2021 Outlook new emails notification not working Using Outlook 4
J Outlook 365 Outlook Macro to Sort emails by column "Received" to view the latest email received Outlook VBA and Custom Forms 0
C Outlook 365 Copy/Save Emails in Folder Outside Outlook to Show Date Sender Recipient Subject in Header Using Outlook 0
U Outlook not responding when trying to print Emails Using Outlook 6
K mark emails with colour manually (like in thunderbird) Using Outlook 1
richardwing Outlook 365 VBA to access "Other Actions" menu for incoming emails in outlook Outlook VBA and Custom Forms 0
U Outlook on the iPhone cannot approve filtered Emails Using Outlook 0
K Outlook 365 After migrating to Outlook 365, some contacts display in emails with prefixes Using Outlook 0
B Move emails from one account to another Outlook VBA and Custom Forms 2
D Unable to view older emails in desktop app Using Outlook 0
S Outlook 365 Help me create a Macro to make some received emails into tasks? Outlook VBA and Custom Forms 1
R Outlook 2021 Having problem setting up outlook 2021 with windows 11. I have 3 gmail accounts and I want the 3 gmail, emails to merge into the same outlook input. Using Outlook.com accounts in Outlook 0
S Outlook 2021 Can you make emails from 3 word domains "safe" by entering top 2 word domain into Safe List in Outlook? Using Outlook 1
J Outlook 365 Emails showing as links and text only Using Outlook 4
G Removing old emails when adding accounts Using Outlook 3
N VBA Macro To Save Emails Outlook VBA and Custom Forms 1
Horsepower Lost emails Using Outlook 4

Similar threads

Back
Top