Skip to content
Excel

FALSE function in Excel

Returns the logical value FALSE

=FALSE()

FALSE examples

Formulas you'll actually reuse.

  1. A shipped flag that is FALSE while the ship date is blank:

    =IF(E2 = "", FALSE, TRUE)

    ResultFALSE

  2. How many rows still have the flag cleared:

    =COUNTIF(H2:H200, FALSE)

    Result152

FALSE in Google Sheets

Same name — your formula ports as-is.

Try FALSE in the playground

Edit the example — nothing to install.

Preloaded with the FALSE formula from Example 1 — change anything and watch it respond.

Loading the editor…