Excel Functions

Click on a link to see the associated Excel functions

Boolean Functions

AND

This function returns TRUE if all of the conditions are true, and FALSE if any of them is false. The reverse function is OR.

IF

Functions that use true/false values are called boolean functions, or conditionals. The basic idea is "in this situation, do something, and in that situation do something else". These can be very powerful for handling different situations, especially when combined with other functions. But they can also become very complicated and hard to debug. When the equals operator (ex: =A1=A2) is used, it returns a boolean value

OR

This function returns TRUE if any of the conditions are true, and FALSE if all of them is false. The reverse function is AND.