Functions in English | Functions in French | Description of Function |
---|
AND | ET | Returns TRUE if all of its arguments are TRUE. |
FALSE | FAUX | Returns the logical value FALSE. |
IF | SI | Specifies a logical test to perform. |
IFERROR | SIERREUR | Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula. |
IFNA | SI.NON.DISP | Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression (2013). |
IFS | SI.CONDITIONS | Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition (2016). |
NOT | NON | Reverses the logic of its argument. |
OR | OU | Returns TRUE if any argument is TRUE. |
SWITCH | SI.MULTIPLE | Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned (2016). |
TRUE | VRAI | Returns the logical value TRUE. |
XOR | OUX | Returns a logical exclusive OR of all arguments (2013). |