List of Functions ENG
List of Functions ENG
SR INDEX() ÍNDICE() Returns a value or the reference to a value included in a table/matrix or range.
Syntax: =INDEX(table; row number; column number).
SR MATCH() CORRESP() Returns the relative position of a value in a vector/array. Syntax: =MATCH(2;A1:A5)
SR VLOOKUP() PROCV() Search a value in a column of a table and returns a value in the same row in an indicated column, on the right.
Syntax: =VLOOKUP(cell with the search value; table; column index of the table that has the desired return
value; [true/false])
DB DAVERAGE() BDMÉDIA() Calculates the average of values in a column of a table, according to a specified criteria. Syntax:
=DAVERAGE(table; column; criteria)
DB DCOUNT() BDCONTAR() Counts the numeric cells in a column of a table, according to a specified criteria.
Syntax: =DCOUNT(table; coluna, criteria)
DB DCOUNTA() BDCONTAR.VAL() Counts the non-empty cells in a column of a table, according to a specified criteria.
Syntax: =DCOUNTA(table; column, criteria)
DB DGET() BDOBTER() Extracts a value from a column of a table, according to a specified criteria. Syntax: =DGET(table; column;
criteria)
DB DMAX() BDMAX() Returns the maximum value in a column, according to specified criteria.
Syntax: =DMAX(table; column; criteria)
DB DMIN() BDMIN() Returns the minimum value in a column, according to a specified criteria.
Syntax: =DMIN(table; column; criteria)
DB DSUM() BDSOMA() Adds the numeric values of a column (field), according to a specified criteria.
Syntax: =DSUM(table; field; criteria). Example: =DSUM(A1:C20;2;K1:K2)
L AND() E() Returns true if all the arguments are true, returns false if any of the arguments is false. Example:
=AND(A1>=10;A2<=15)
L FALSE() FALSO() Returns the logical value false. Syntax: =FALSE()
L IF() SE() Executes two possible actions according to the result (true or false) of a logical condition.
Syntax: =IF(condition; action if true; action if false).
Examples: A1: 12. =IF(A1>10;1;0) => 1; =IF(A1>0;"positive";IF(A1<0;"negative";"null”))
L NOT() NÃO() Returns the logical value opposed to logical value of the argument.
Syntax: =NOT(logical value)
L OR() OU() Returns true if any of the arguments is true, returns false if both arguments are false. Example:
=OR(A1>=10;A2<=15)
L TRUE() VERDADEIRO() Returns the logical value true. Syntax: =TRUE()
I ISBLANK() É.CELULA.VAZIA() Returns true if a cell is empty. Syntax: =ISBLANK(value)
I ISERROR() É.ERRO() Returns true if the contents of a cell, or the result of a function), gives an error (#n/a, #value; #ref, #div/0,
#num). Syntax: =ISERROR(value)
I ISLOGICAL() É.LÓGICO() Returns true if the contents of a cell is a logical value. Syntax: =ISLOGICAL(value)
I ISNA() É.NÃO.DISP() Returns true if the value/contents of the cell gives an error #N/D (not available value). Syntax: =ISNA(value)
I ISNUMBER() É.NUM() Returns true if the contents of a cell is a number. Syntax: =ISNUMBER(value)
I ISTEXT() É.TEXTO() Returns true if the value ou contents of a cell is text. Syntax: =ISTEXT(value)
T CONCATENATE() CONCATENAR() Join characters or chains of characters (String) in a single String/text. Syntax: =CONCATENATE(A1;" ";A2)
As an alternative it may be used the operator & (Syntax: = A1 & A2)
T FIND() LOCALIZAR() Searches for a character or String in other String/sentence/document and returns the position where it is
found. Syntax: =FIND(search String/character; String/sentence/document; from what position)
T LEFT() ESQUERDA() Extracts n characters from a String counting from the left.
Syntax: =LEFT("excel";2) ➔ “ex”
T LEN() NÚM.CARACT() Returns the number of characters in a String (or chain of characters).
Syntax: =LEN("excel") ➔ 5
T MID() SEG.TEXTO() Extracts n characters from a String counting from a specified position. Syntax: =MID("excel";2;1) ➔ “x”
T RIGHT() DIREITA() Extracts n characters from a String counting from the right.
Syntax: =RIGHT("excel";2) ➔ “el”
Type of function
DB SR DH S I L M T
Database Search and Reference Date and Hour Statistical Information Logical Mathematics Text