Excel AND OR Logical Functions
AND vs OR Logic
| Feature | Returns TRUE When |
|---|---|
| AND(a, b, c) | Every argument is TRUE. |
| OR(a, b, c) | At least one argument is TRUE. |
| NOT(a) | Inverts a single boolean: TRUE → FALSE. |
Noble Desktop's Excel Bootcamp covers formulas, pivot tables, data analysis, and VBA.
In this section, we'll take a look at how you can use the AND OR functions to test if multiple criteria are all true, or at least one of them is true.
1Full Video Transcript
2Introduction to AND and OR Functions
In this section, we'll take a look at how you can use the AND and OR functions to test if multiple criteria are all true, or at least one of them is true. The AND function checks to see if all logical tests are true. If they are, the result of the AND function will be true. If only one or several logical tests are false, then the whole AND function returns false.
Now the OR function is a little different. There's a little bit of flexibility involved here. Only one logical test has to be true for the OR function to result in true. The only way you'll get a false with the OR function is if every single logical test is false.