홈으로

Guía de Funciones de Excel

Encuentra fácilmente las funciones de Excel más utilizadas y aprende a usarlas. Organizadas por varias categorías incluyendo funciones matemáticas, de texto, fecha y lógicas.

📊 Guía Completa de Funciones de Excel

Las funciones de Excel comúnmente utilizadas en el trabajo están organizadas por categoría. Revisa la sintaxis, parámetros y ejemplos de cada función y cópialos al portapapeles para uso inmediato.

SUM

Descripción

Calcula la suma de números.

Sintaxis

SUM(number1, [number2], ...)

Parámetros

  • number1*:Primer número o rango
  • number2:Números o rangos adicionales (opcional)

Ejemplo

=SUM(A1:A10)

Suma de A1 a A10

AVERAGE

Descripción

Calcula el promedio de números.

Sintaxis

AVERAGE(number1, [number2], ...)

Parámetros

  • number1*:Primer número o rango
  • number2:Números o rangos adicionales (opcional)

Ejemplo

=AVERAGE(A1:A10)

Promedio de A1 a A10

COUNT

Descripción

Cuenta el número de celdas que contienen números.

Sintaxis

COUNT(value1, [value2], ...)

Parámetros

  • value1*:Primer valor o rango
  • value2:Valores o rangos adicionales (opcional)

Ejemplo

=COUNT(A1:A10)

Cantidad de celdas con números de A1 a A10

MAX

Descripción

Returns the largest value.

Sintaxis

MAX(number1, [number2], ...)

Parámetros

  • number1*:First number or range
  • number2:Additional numbers or ranges (optional)

Ejemplo

=MAX(A1:A10)

Maximum value from A1 to A10

MIN

Descripción

Returns the smallest value.

Sintaxis

MIN(number1, [number2], ...)

Parámetros

  • number1*:First number or range
  • number2:Additional numbers or ranges (optional)

Ejemplo

=MIN(A1:A10)

Minimum value from A1 to A10

ROUND

Descripción

Rounds a number to specified digits.

Sintaxis

ROUND(number, num_digits)

Parámetros

  • number*:number
  • num_digits*:num_digits

Ejemplo

=ROUND(3.14159, 2)

3.14

CONCATENATE

Descripción

Joins several text strings into one.

Sintaxis

CONCATENATE(text1, [text2], ...)

Parámetros

  • text1*:text1
  • text2:text2

Ejemplo

=CONCATENATE(A1, " ", B1)

A1 and B1 joined with space

LEFT

Descripción

Returns specified number of characters from the left.

Sintaxis

LEFT(text, [num_chars])

Parámetros

  • text*:Source text
  • num_chars:Number of characters to extract (default: 1)

Ejemplo

=LEFT(A1, 5)

Left 5 characters of A1

RIGHT

Descripción

Returns specified number of characters from the right.

Sintaxis

RIGHT(text, [num_chars])

Parámetros

  • text*:Source text
  • num_chars:Number of characters to extract (default: 1)

Ejemplo

=RIGHT(A1, 3)

Right 3 characters of A1

MID

Descripción

Returns specified number of characters from the middle.

Sintaxis

MID(text, start_num, num_chars)

Parámetros

  • text*:Source text
  • start_num*:Starting position
  • num_chars*:Number of characters to extract

Ejemplo

=MID(A1, 3, 5)

5 characters from position 3 of A1

LEN

Descripción

Returns the number of characters in text.

Sintaxis

LEN(text)

Parámetros

  • text*:Text to count characters

Ejemplo

=LEN(A1)

Number of characters in A1

UPPER

Descripción

Converts text to uppercase.

Sintaxis

UPPER(text)

Parámetros

  • text*:Text to convert

Ejemplo

=UPPER(A1)

A1 converted to uppercase

LOWER

Descripción

Converts text to lowercase.

Sintaxis

LOWER(text)

Parámetros

  • text*:Text to convert

Ejemplo

=LOWER(A1)

A1 converted to lowercase

TODAY

Descripción

Returns current date.

Sintaxis

TODAY()

Ejemplo

=TODAY()

Today's date

NOW

Descripción

Returns current date and time.

Sintaxis

NOW()

Ejemplo

=NOW()

Current date and time

YEAR

Descripción

Extracts the year from a date.

Sintaxis

YEAR(serial_number)

Parámetros

  • serial_number*:Date value

Ejemplo

=YEAR(A1)

Year of A1 date

MONTH

Descripción

Extracts the month from a date.

Sintaxis

MONTH(serial_number)

Parámetros

  • serial_number*:Date value

Ejemplo

=MONTH(A1)

Month of A1 date

DAY

Descripción

Extracts the day from a date.

Sintaxis

DAY(serial_number)

Parámetros

  • serial_number*:Date value

Ejemplo

=DAY(A1)

Day of A1 date

DATEDIF

Descripción

Calculates the difference between two dates.

Sintaxis

DATEDIF(start_date, end_date, unit)

Parámetros

  • start_date*:Start date
  • end_date*:End date
  • unit*:Unit (Y, M, D, etc.)

Ejemplo

=DATEDIF(A1, B1, "Y")

Years between A1 and B1

IF

Descripción

Devuelve diferentes valores basados en una condición.

Sintaxis

IF(logical_test, [value_if_true], [value_if_false])

Parámetros

  • logical_test*:Condición a evaluar
  • value_if_true:Valor si la condición es verdadera
  • value_if_false:Valor si la condición es falsa

Ejemplo

=IF(A1>10, "Large", "Small")

'Grande' si A1>10, de lo contrario 'Pequeño'

AND

Descripción

Returns TRUE if all arguments are TRUE.

Sintaxis

AND(logical1, [logical2], ...)

Parámetros

  • logical1*:First condition
  • logical2:Additional conditions (optional)

Ejemplo

=AND(A1>5, B1<10)

TRUE if A1>5 AND B1<10

OR

Descripción

Returns TRUE if any argument is TRUE.

Sintaxis

OR(logical1, [logical2], ...)

Parámetros

  • logical1*:First condition
  • logical2:Additional conditions (optional)

Ejemplo

=OR(A1>5, B1<10)

TRUE if A1>5 OR B1<10

NOT

Descripción

Reverses the logical value.

Sintaxis

NOT(logical)

Parámetros

  • logical*:Logical value

Ejemplo

=NOT(A1>10)

TRUE if A1 is NOT greater than 10

VLOOKUP

Descripción

Busca verticalmente en una tabla y devuelve un valor.

Sintaxis

VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

Parámetros

  • lookup_value*:Valor a buscar
  • table_array*:Rango de tabla para buscar
  • col_index_num*:Número de columna a devolver
  • range_lookup:Coincidencia exacta (FALSE) o aproximada (TRUE)

Ejemplo

=VLOOKUP(A1, C1:E10, 2, FALSE)

Busca A1 en C1:E10 y devuelve el valor de la 2ª columna

HLOOKUP

Descripción

Searches horizontally in a table and returns a value.

Sintaxis

HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

Parámetros

  • lookup_value*:Value to search for
  • table_array*:Table range to search
  • row_index_num*:Row number to return
  • range_lookup:Exact match (FALSE) or approximate (TRUE)

Ejemplo

=HLOOKUP(A1, C1:G3, 2, FALSE)

Find A1 in C1:G3 and return 2nd row value

INDEX

Descripción

Returns a value from a specific position in an array.

Sintaxis

INDEX(array, row_num, [column_num])

Parámetros

  • array*:Data array
  • row_num*:Row number
  • column_num:Column number (optional)

Ejemplo

=INDEX(A1:C10, 3, 2)

Value at row 3, column 2 of A1:C10

MATCH

Descripción

Finds the position of a value in an array.

Sintaxis

MATCH(lookup_value, lookup_array, [match_type])

Parámetros

  • lookup_value*:Value to find
  • lookup_array*:Array to search
  • match_type:Match type (0, 1, -1)

Ejemplo

=MATCH(A1, B1:B10, 0)

Position of A1 value in B1:B10

COUNTIF

Descripción

Counts cells that meet a condition.

Sintaxis

COUNTIF(range, criteria)

Parámetros

  • range*:Range to check
  • criteria*:Condition

Ejemplo

=COUNTIF(A1:A10, ">5")

Count of values greater than 5 in A1:A10

SUMIF

Descripción

Sums cells that meet a condition.

Sintaxis

SUMIF(range, criteria, [sum_range])

Parámetros

  • range*:Range to check condition
  • criteria*:Condition
  • sum_range:Range to sum (optional)

Ejemplo

=SUMIF(A1:A10, ">5")

Sum of values greater than 5 in A1:A10

AVERAGEIF

Descripción

Averages cells that meet a condition.

Sintaxis

AVERAGEIF(range, criteria, [average_range])

Parámetros

  • range*:Range to check condition
  • criteria*:Condition
  • average_range:Range to average (optional)

Ejemplo

=AVERAGEIF(A1:A10, ">5")

Average of values greater than 5 in A1:A10

STDEV

Descripción

Calculates standard deviation (sample).

Sintaxis

STDEV(number1, [number2], ...)

Parámetros

  • number1*:First number or range
  • number2:Additional numbers or ranges (optional)

Ejemplo

=STDEV(A1:A10)

Standard deviation of A1 to A10

PMT

Descripción

Calculates loan payment amount.

Sintaxis

PMT(rate, nper, pv, [fv], [type])

Parámetros

  • rate*:Interest rate
  • nper*:Total number of payments
  • pv*:Present value (loan principal)
  • fv:Future value (optional)
  • type:Payment timing (optional)

Ejemplo

=PMT(5%/12, 60, 100000)

Monthly payment for 5% annual rate, 5-year, $100,000 loan

FV

Descripción

Calculates future value of investment.

Sintaxis

FV(rate, nper, pmt, [pv], [type])

Parámetros

  • rate*:Interest rate
  • nper*:Total periods
  • pmt*:Periodic payment
  • pv:Present value (optional)
  • type:Payment timing (optional)

Ejemplo

=FV(8%/12, 120, -1000)

Future value of $1000 monthly savings at 8% annual rate for 10 years

PV

Descripción

Calculates present value of investment.

Sintaxis

PV(rate, nper, pmt, [fv], [type])

Parámetros

  • rate*:Interest rate
  • nper*:Total periods
  • pmt*:Periodic payment
  • fv:Future value (optional)
  • type:Payment timing (optional)

Ejemplo

=PV(8%/12, 120, 1000)

Present value of $1000 monthly payments at 8% annual rate for 10 years