Libreria formule

Funzioni Google Sheets

Una scheda strutturata per ogni funzione: sintassi, argomenti, esempi pratici, errori comuni, FAQ e collegamenti a formule correlate.

Digita almeno 2 lettere per vedere i suggerimenti.

Logical

AND

AND(logical_expression1, [logical_expression2, ...])

Returns true if all of the provided arguments are logically true, and false if any of the provided arguments are logically false. Learn more

Apri scheda
Logical

FALSE

FALSE()

Returns the logical value `FALSE`. Learn more

Apri scheda
Logical

IF

IF(logical_expression, value_if_true, value_if_false)

Returns one value if a logical expression is `TRUE` and another if it is `FALSE`. Learn more

Apri scheda
Logical

IFERROR

IFERROR(value, [value_if_error])

Returns the first argument if it is not an error value, otherwise returns the second argument if present, or a blank if the second argument is absent. Learn more

Apri scheda
Logical

IFNA

IFNA(value, value_if_na)

Evaluates a value. If the value is an #N/A error, returns the specified value. Learn more.

Apri scheda
Logical

IFS

IFS(condition1, value1, [condition2, value2], …)

Evaluates multiple conditions and returns a value that corresponds to the first true condition. Learn more.

Apri scheda
Logical

LAMBDA

LAMBDA(name, formula_expression)

Creates and returns a custom function with a set of names and a formula_expression that uses them. To calculate the formula_expression, you can call the returned function with as many values as the name declares. Learn more

Apri scheda
Logical

LET

LET(name1, value_expression1, [name2, …], [value_expression2, …], formula_expression )

Assigns name with the value_expression results and returns the result of the formula_expression. The formula_expression can use the names defined in the scope of the LET function. The value_expressions are evaluated only once in the LET function even if the following value_expressions or the formula_expression use them multiple times. Learn more

Apri scheda
Logical

NOT

NOT(logical_expression)

Returns the opposite of a logical value - `NOT(TRUE)` returns `FALSE`; `NOT(FALSE)` returns `TRUE`. Learn more

Apri scheda
Logical

OR

OR(logical_expression1, [logical_expression2, ...])

Returns true if any of the provided arguments are logically true, and false if all of the provided arguments are logically false. Learn more

Apri scheda
Logical

SWITCH

SWITCH(expression, case1, value1, [default or case2, value2], …)

Tests an expression against a list of cases and returns the corresponding value of the first matching case, with an optional default value if nothing else is met. Learn more

Apri scheda
Logical

TRUE

TRUE()

Returns the logical value `TRUE`. Learn more

Apri scheda
Logical

XOR

XOR(logical_expression1, [logical_expression2, ...])

The XOR function performs an exclusive or of 2 numbers that returns a 1 if the numbers are different, and a 0 otherwise. Learn more.

Apri scheda