Only the specific words -rule

H

-Hannu

Hello.
Can I create a rule in Outlook 2003 that filters messages by exact phrase in
the message subject like "Test message" but not like "RE: Test Message".

I mean , if there is anything else in the message subject than the filter
phrase (e.g. "Test message" ), the rule is not taking the action to the
message.

-Hannu
 
B

Brian Tillman [MVP - Outlook]

Can I create a rule in Outlook 2003 that filters messages by exact phrase
in
the message subject like "Test message" but not like "RE: Test Message".

Not really. Rules look for the string anywhere in the field you're
searching. Judicious use of the exceptions could mitigate this (use "except
with " test" in the subject for your example).
 
M

Michael Bauer [MVP - Outlook]

You could do that with VBA. In principle, the Run-a-Script-Rule would look
like this:

Public MyRule(Mail as Outlook.MailItem)
If Mail.Subject = "whatever" Then
....
Endif
End Sub

The rest depends on what you want the rule to do.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Thu, 13 Nov 2008 05:07:01 -0800 schrieb -Hannu:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top