73

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 
xpt
  • 9,385
  • 44
  • 120
  • 178
FernandoSBS
  • 2,023

5 Answers5

41

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.)

UPDATE: I should mention that it is possible to combine multiple source emails in a single rule ("or"-ing them together, so to speak). This doesn't answer the original question, but it is something I just recently realized is possible. To do it, simply find the "from" field in the Rule Description window, and click on the hyperlink, then manually edit the "From" address line at the bottom, adding as many addresses as you want, separated with a semi-colon.

kmote
  • 2,582
6

To get an "OR" you need to look further down the Step 1 conditions list. E.g. " with specific words in the subject or body" You can then list out all the criteria words required.

4

I am on outlook for mac 2018. There are two kinds of rules 1) server side, and 2) client side. The server side rules don't support OR but the client side rules do.

enter image description here enter image description here

1

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.

msperry
  • 21
-2

For subject line you can use both AND / OR Operators. Just separate words by capital OR/AND with space before and after the operator.