Change flags across multiple folders?

Status
Not open for further replies.

Handvprice

New Member
Outlook version
Email Account
POP3
1) Is there a way to clear the flags on mails across multiple folders? I can list them with Advanced Find, but it doesn't allow changing them there like one can within a folder. (The "Find and Replace" 3rd-party addins can only change text not flags, or are limited to Contacts.)

2) When using Outlook 2003's (yeah, I know it's old, but so am I) Advanced Find's Advanced tab, I'm finding different files using "Flag Status|Exists" and "Flag Status|Not equal to|Unflagged". What is the true meaning of those search field?

Thanks in advance Diane (or whoever else)
 
Are you clearing all or just some? You could use a macro if you wanted to clear all - it could filter using an if statement but would apply to all meeting that condition.

Flag status exists means the flag status field exists -for a pst, this should be everything that has a flag or had a flag that you cleared. Exchange should show all messages as the field is added by the server.

Does not equal unflagged should find only items with status between not started and complete, no cleared items.
 
Appreciate the rapid response! In my case, the flags I want to clear are set by mapilab's duplicate email finder (a colored flag without a colored background), and sometimes I want to clear the settings before running it again. The overall project is getting rid of backup copies of pst's, deleting duplicate emails and keeping the few that were unique. I don't yet know how to write a macro; any guides to suggest?
And since I'm not dealing with completed flags or Exchange, I'd expect the two search patterns to return similar results, although I haven't been able to replicate the situation when they differed. I like your suggestion that having cleared a flag makes it exist but be unflagged. (Curiously, I've run across some mails that show flags, but that neither search found.)
 
One of the macros on this page works with all messages in a selected folder - Working with All Items in a Folder or Selected Items

In the do whatever section, you'll use the code to set the flag to no flag -you could do it without the if statement, but this might speed it up a bit if there are a lot of messages.
Code:
  With obj
 If .IsMarkedAsTask = True Then
  ' do whatever
Debug.Print obj.Subject
.ClearTaskFlag
  .Save
end if
  End With

updated with code that works. :) plus i forgot to add .save to change the changes.
 
Last edited:
Unfortunately (although I'm not versed in macros), I believe that macro only works on items all in 1 folder, whereas I was trying to do it across multiple folders at once.
BUT, SOLVED! I found that adding a custom search to the "Search Folders" at the bottom of the Outlook 2003 list of folders (in my case searching for "Flag Status not equal to unflagged") gives a list across multiple folders that you *can* change the flag status in, as opposed to the "Advanced Find" window that you can't change them in! I found this reported nowhere on the web (although I'm sure it was already known), and it would answer many people's requests. I respectfully suggest you create a Slipstick article mentioning this. TY.
 
Yeah, search folders can be very helpful, but are often forgotten by users.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
M Use Macro to change account settings Outlook VBA and Custom Forms 0
D Unable to change AppointmentItem.Start property Outlook VBA and Custom Forms 4
sjmo2 Change subject for new e-mails only. Outlook VBA and Custom Forms 2
Horsepower Contact phone numbers randomly change Using Outlook 0
P Outlook 2016 Change Paste Special Default Format Using Outlook 8
whizzard Change FROM address based on TO or CC address Outlook VBA and Custom Forms 8
S Outlook 365 Can I change the possible range of highlighting colours when writing an Outlook email? Using Outlook 1
V Can one change the formatting of email title blocks? Using Outlook 0
S Unable to change Message Class Outlook VBA and Custom Forms 0
S New Outlook Appointment - Select All Body Text and Change Font and Size Outlook VBA and Custom Forms 1
J VBA Cannot programmatically input or change Value for User Defined field Using Outlook 1
C Outlook 365 Can you change the follow up colour? Using Outlook 1
A Change settings Send/receive VBA Outlook VBA and Custom Forms 0
E Outlook VBA change GetDefaultFolder dynamically Outlook VBA and Custom Forms 6
O What would be the recommended way to change an email address (family member)? Using Outlook 0
S Change "This Week" flag start date behavior Using Outlook 1
N Help creating a VBA macro with conditional formatting to change the font color of all external emails to red Outlook VBA and Custom Forms 5
D Change Microsoft Account password - what to do to update on all devices Using Outlook 4
S Outlook 2016 Change how Outlook shows me contacts in emails Using Outlook 0
Witzker HowTo Change message Class of contact form Outlook VBA and Custom Forms 0
Z Outlook 365 delete reminder you can’t make change to contents of this-read only folder Using Outlook 4
Witzker Pls help to change the code for inserting date in Ol contact body Outlook VBA and Custom Forms 5
R How to Change Margins In Google Docs...? Using Outlook 0
e_a_g_l_e_p_i Outlook 2010 How can I change the font size on right side appointment pane Using Outlook 12
diver864 vba for a rule to automatically accept meeting requests with 'vacation' in subject, change to all-day event, change to free, don't send reply Outlook VBA and Custom Forms 1
B Change Font and Font size using VBA Outlook VBA and Custom Forms 9
D Change senders title Using Outlook 1
W Recurrence: delete older occurrences / change earliest start time Outlook VBA and Custom Forms 0
E Change sending account depending on Subjectline Outlook VBA and Custom Forms 0
J Outlook 2013 Change color of text in data fields of contacts in Outlook 2013? Using Outlook 10
B Change row background color of selected item Using Outlook 1
PGSystemTester VBA To Change AppointmentItem.BusyStatus From MeetingItem Before Send Using Outlook 0
B Change from Address Outlook VBA and Custom Forms 0
X If you change expiration date of repeated task it dupplicates Using Outlook 1
E How to display "Change Folder" in Change Default Email Delivery Location in Exchange Outlook 2016 Using Outlook 1
Z See "Change View" Drop Down as a List? Using Outlook 1
V Change start time based on message duration Outlook VBA and Custom Forms 2
R Folder pane width change Using Outlook 90
S Change VBA script to send HTML email instead of text Outlook VBA and Custom Forms 3
S Outlook 2010 unable to change default font Using Outlook 7
P How can I change my calendar view back Using Outlook 3
A Edit subject - and change conversationTopic - using VBA and redemption Outlook VBA and Custom Forms 2
T Change the selected Message in the Outlook window Outlook VBA and Custom Forms 2
geofferyh How to change the Attachment File Name? Outlook VBA and Custom Forms 1
W Appointment occurrences change the location property Using Outlook 0
T Scheduled footer change Using Outlook 2
B Change font of reminder of an email header Outlook VBA and Custom Forms 3
CWM030 Name Change? Exchange Server Administration 9
V not able to change name in customize Ribbon Outlook VBA and Custom Forms 1
JoeG Appointment Delete/Change Recurrence Outlook VBA and Custom Forms 0

Similar threads

Back
Top