Examples of using Returns false in English and their translations into Danish
{-}
-
Colloquial
-
Official
-
Medicine
-
Financial
-
Ecclesiastic
-
Official/political
-
Computer
NOT(true) returns False.
The ISODD() function returns True if the number is odd. Otherwise returns False.
INT2BOOL(0) returns false.
The ISBLANK() function returns True ifthe parameter is empty. Otherwise it returns False.
ISNUM(hello) returns False.
The EXACT() function returns True if thesetwo strings are equal. Otherwise, it returns False.
ISREF("hello") returns false.
The NAND() function returns True if at least one value is not true.Otherwise it returns False.
ISNUMBER(hello) returns False.
The ISTIME() function returns True if the parameter is a time value.Otherwise it returns False.
ISTIME("hello") returns False.
The ISLOGICAL() function returns True if the parameter is a boolean value.Otherwise it returns False.
ISDATE("hello") returns False.
The ISREF() function returns True if the parameter refers to a reference.Otherwise it returns False.
NAND(true; true) returns False.
The ISERROR() function returns True if its parameter is an error of any type.Otherwise, it returns False.
ISNOTTEXT("hello") returns False.
ISBLANK(A1) returns False if A1 holds a value.
ISNONTEXT("hello") returns False.
The ISNA() function returns True if itsparameter is a N/ A error. In all other cases, it returns False.
AND(true; false) returns False.
The XOR() function returns False if the number of True values is even. Otherwise it returns True. It returns an error if any argument is an error.
EXACT(" KSpread";" KOffice") returns False.
The NOR() function returns True if all the values given as parameters are of boolean type and have the value false. Otherwise it returns False.
The AND() function returns True if all the values are true.Otherwise it returns False unless any of the values in an error- then it returns an error.
Updated so that if a target atom has no symbol(such as pseudo atoms)the match returns false rather than an NPE.
The NOT() function returns True if the value is False and returns False if the value is True. It returns an error if the input in an error.
OR(false; false; false) returns False.
The OR() function returns True if at least one of the values is true.Otherwise it returns False unless any of the values is an error, then it returns an error.
The ISNUMBER() function returns True if the parameter is a numerical value.Otherwise it returns False. It'sthe same as ISNUM.