Skip to content
Excel

ISLOGICAL function in Excel

Returns TRUE if the value is a logical value

=ISLOGICAL(value)

ISLOGICAL syntax and parameters

One argument, one required.

  • valueanyRequired

    The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these.

ISLOGICAL examples

Formulas you'll actually reuse.

  1. Is the approval cell a real TRUE/FALSE, not the text “TRUE”?

    =ISLOGICAL(E2)

    ResultTRUE

  2. Accept either a checkbox value or a typed yes/no in the same column:

    =IF(ISLOGICAL(E2), E2, E2 = "yes")

    ResultTRUE

ISLOGICAL in Google Sheets

Same name — your formula ports as-is.

Try ISLOGICAL in the playground

Edit the example — nothing to install.

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

Loading the editor…