ISLOGICAL Function
The ISLOGICAL function in Google Sheets is used to check if a value is a logical value (TRUE or FALSE).
Syntax
ISLOGICAL(value)
value
: The value or expression you want to test. This is a required parameter.
Example
- Logical Value Check
Check if a value is a logical value:
=ISLOGICAL(TRUE)
This will return TRUE.
Notes
- Returns TRUE only if the value is either TRUE or FALSE.
- Useful for testing logical conditions in formulas.