ISLOGICAL

ISLOGICAL(value)

Returns the boolean True or False depending if the value is True or False.

valueThe value you want to test.

REMARKS
* A value that is either True or False is called a logical value.
* The "value" can refer to a value, text string, cell reference, formula or a named range.
* You can use the ISEVEN function to return True or False depending if the value is an even number.
* You can use the ISODD function to return True or False depending if the value is an odd number.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 AB
1=ISLOGICAL(TRUE) = TrueFalse
2=ISLOGICAL(FALSE) = TrueTrue
3=ISLOGICAL(B1) = True 
4=ISLOGICAL(B1) = True 
5=ISLOGICAL("TRUE") = False 
6=ISLOGICAL(1) = False 
7=ISLOGICAL(0) = False 
8=ISLOGICAL("some text") = False 
9=ISLOGICAL(named_range) = True 


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top