FALSE Function
Returns the logical value FALSE.
Syntax
Basic Example
Return a FALSE value
=FALSE()The function evaluates to the logical constant FALSE with no input needed.
Advanced Examples
Example 1: Use inside a condition
Force the false branch of an IFReturn FALSE from a formula
=IF(FALSE(),"Yes","No")Example 2: Explicit boolean in a check
Compare a cell to a targetReturn FALSE on a non-match
=IF(A1=10,TRUE(),FALSE())How FALSE Works
FALSE is a function wrapper around the FALSE logical constant. It performs no computation and accepts no arguments; it is provided for compatibility and explicit boolean building.
Important Notes & Limitations
Takes no arguments; supplying any returns #VALUE!.
Mostly redundant because the literal FALSE works the same in formulas.
Stored as a logical value, not the text "FALSE".
Common Errors & Fixes
#VALUE! errorPassing an argument such as =FALSE(1).Fix: Leave the parentheses empty: =FALSE().
Download Practice File
FALSE
falsePractice FALSE with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the FALSE function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps