AND
Returnstrue if all off the provided arguments are logically true. Returns false if any of the provided arguments are false. Can be combined with other functions like IF to create advanced logical statements.
For more information, refer to the Google Sheets documentation.
BITAND
Returns the bitwise booleanAND of two numbers.
For more information, refer to the Google Sheets documentation.
BITOR
Returns the bitwise booleanOR of two numbers.
For more information, refer to the Google Sheets documentation.
BITRSHIFT
Shifts the bits of the input a certain number of places to the right. Bits on the left are filled with zeroes. This function accepts two arguments:value- The number to be shiftedshift_amount- The number of places to shift the given value
BITXOR
Returns a number thatβs the result of performing anXOR function at each bit of the two numbers given as arguments. This function is a bitwise XOR (exclusive or) of 2 numbers that returns a bit of β1β if 2 bits are different, and a bit of β0β otherwise.
For more information, refer to the Google Sheets documentation.
IF
Returns the second argument if a logical expression isTRUE and the third argument if the expression is FALSE. To evaluate multiple conditions, use IFS.
For more information, refer to the Google Sheets documentation.
IFERROR
Returns the specified value (optional_value_if_error) if the formula returns null due to an error; otherwise returns the result of the formula (value). If the second argument is absent, a blank will be returned.
For more information, refer to the Google Sheets documentation
IFNA
Returns the specified value if the formula returns null; otherwise returns the result of the formula. For more information, refer to the Google Sheets documentation.IFS
Evaluates multiple conditions and returns a value that corresponds to the first true condition. Similar toIF.
For more information, refer to the Google Sheets documentation.
ISBLANK
ReturnsTRUE if a value is blank.
For more information, refer to the Google Sheets documentation.
ISNUMBER
ReturnsTRUE if a value is a number.
For more information, refer to the Google Sheets documentation
NOT
Returns the opposite of a logical value:NOT(TRUE)returnsFALSENOT(FALSE)returnsTRUE
0 has a logical value of FALSE and any non-zero numeric value has a logical value of TRUE, NOT(0) returns TRUE and NOT(6) returns FALSE. However, when non-numeric values are input into NOT, the function returns the error #VALUE!.
For more information, refer to the Google Sheets documentation.
OR
Returnstrue if any of the provided arguments are logically true, and false if all of the provided arguments are logically false. Can be combined with other functions like IF to create advanced logical statements.
For more information, refer to the Google Sheets documentation.