Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

It seems that Microsoft Outlook 2010 can only use the "AND" boolean when setting RULES. I find that very disturbing since even the lower end Windows Live Mail can use "OR". Am I missing something? I'm trying to recreate this WLM rule in Outlook:

Apply this rule after the message arrives
Where the From line contains 'casoclinico' 
    or Where the Subject line contains 'caso' and 'clínico' 
Move it to the Isbrae - Caso Clínico folder 
share|improve this question
Not sure if this helps, but A || B can be refactored as !(!A && !B), i.e. A or B == not(not A and not B). – Lèse majesté Mar 28 '12 at 2:31
@Lèsemajesté: clever, but unfortunately Outlook will not support that sort of reasoning either. The rules wizard is very limited in that regard. – kmote Mar 28 '12 at 2:43
@kmote: Yea, I don't use Outlook and figured it was probably a long shot, which is why I made it a comment. – Lèse majesté Mar 28 '12 at 2:49

2 Answers

Remarkably, the Outlook Rules Wizard does not support OR'ing in the way you've described. You can create two separate rules to get the same result, if you don't mind a proliferation of rules. The only other alternative is to create a custom rule in VBA script, but it is not a trivial task by any means -- I wouldn't recommend it. (If you are interested, you might peruse the links found in this question.)

share|improve this answer
EEk. At my work, there are so many lists and such that rule count is actually a problem. Outlook 2010 has a rather low rule number limit, so a reasonable filtering strategy would be nice. Is it obvious why there isn't something like an "Advanced" button where you can type a quasi sql statement? – Limited Atonement Oct 10 '12 at 20:37

Well in this case because you are using the Subject, you could create one rule with two conditions, the first using the 'if specific words in the Subject' and the second using the 'if specific words in the Subject or Body'. The only drawback is that the rule would process messages into the designated folder if 'caso' was in the subject but 'clinico' was only in the body.

I suppose you could always write some VBA code to handle the case if this is a one-off.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.