
Returns the logical value FALSE, which Excel also treats as 0 in many calculations.
The Excel FALSE function returns the logical value FALSE. Like TRUE(), it is a very small function, but it helps explain how Excel handles logical values in formulas, decisions, and some calculations.
In many real formulas, FALSE appears as the result of a comparison such as =A1=0 or =B2="Yes". The FALSE function is most useful when you want to return that value explicitly, or when you want to understand how FALSE behaves in logical formulas and lookup settings.
Use FALSE when you want a formula to output a fixed logical FALSE value directly.
Excel treats FALSE as a logical value, and in many math situations it also behaves like 0.
=FALSE()
The FALSE function takes no arguments. Microsoft also notes that you can type the word FALSE directly into a cell or formula and Excel will understand it. The function version is still helpful when you want a clear, explicit formula.
If you see FALSE inside another formula, it is often being used as a fixed logical result rather than something calculated directly by this function.
FALSE is easiest to understand when you compare it with the other logical building blocks around it.
| Function | Main Idea | Typical Result | Best Use |
|---|---|---|---|
FALSE |
Return a fixed logical FALSE value | FALSE | Testing, fixed off states, explicit false output |
TRUE |
Return a fixed logical TRUE value | TRUE | Testing, fixed on states, explicit true output |
IF |
Return different results based on a test | Custom TRUE/FALSE result | Conditional decisions |
AND / OR |
Evaluate one or more logical tests | TRUE or FALSE | Multi-condition logic |
FALSE also appears in some older lookup formulas. For example, in VLOOKUP, a final argument of FALSE asks for an exact match rather than an approximate one.
A direct =FALSE() formula is useful when you want to create a simple logical flag or force part of a test into a false state. That can help while building or checking formulas, or when you want an explicit off value in a small model.
FALSE also matters because of how Excel treats it in calculations. In many formulas, FALSE behaves like 0. That means multiplying a number by FALSE returns zero. This is one of the simplest ways to understand how logical values can affect math in Excel.
It is also important to separate logical FALSE from the text string "FALSE". If you put FALSE in quotes, Excel treats it as text, not as a logical value. That difference matters when the result will be used in later formulas, lookups, or filters.
This is the most basic use of the function.
=FALSE()
The formula returns the logical value FALSE. This is useful when you want to create a fixed logical flag or test how another formula reacts to a FALSE input.
In cell F1, return the logical value FALSE with the FALSE function.
Many formulas return FALSE without using the FALSE function directly.
=10=20
This returns FALSE because the two sides are not equal. It shows that comparisons naturally produce logical results in Excel, which is why FALSE often appears as the output of another formula rather than from =FALSE() itself.
In cell F2, test whether 10 is equal to 20. The result should be FALSE.
FALSE can also be used as the explicit result of a condition.
=IF(A1="",FALSE(),TRUE())
If A1 is empty, the formula returns FALSE. Otherwise it returns TRUE. This kind of formula can be used to create ready/not-ready, present/missing, or active/inactive flags.
In cell F3, return FALSE if A1 is empty, otherwise return TRUE.
This example shows how FALSE behaves in math.
=100*FALSE()
Because FALSE behaves like 0 here, the result becomes 0. This helps explain why logical values can sometimes be used as switches in numeric formulas.
In cell F4, multiply 100 by FALSE. Because FALSE acts like 0, the result becomes 0.
FALSE() returns the logical value FALSE.0.FALSE is logical, while "FALSE" is text.VLOOKUP.Tell your friends about this post