Skip to content
Excel

TRUE function in Excel

Returns the logical value TRUE

=TRUE()

TRUE examples

Formulas you'll actually reuse.

  1. An explicit boolean cell for a checkbox or filter column:

    =IF(D2 > 1000, TRUE, FALSE)

    ResultTRUE

  2. How many rows have the flag set — TRUE as a criterion:

    =COUNTIF(H2:H200, TRUE)

    Result47

TRUE in Google Sheets

Same name — your formula ports as-is.

Try TRUE in the playground

Edit the example — nothing to install.

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

Loading the editor…