Returns the absolute value of a number. Removes any negative sign.
=ABS(number)
=ABS(-10) β 10
Returns the arccosine (inverse cosine) of a number in radians. Input must be between -1 and 1.
=ACOS(number)
=ACOS(0.5) β 1.0472
Returns the inverse hyperbolic cosine of a number. Input must be greater than or equal to 1.
=ACOSH(number)
=ACOSH(10) β 2.9932
Returns the arcsine (inverse sine) of a number in radians. Input must be between -1 and 1.
=ASIN(number)
=ASIN(1) β 1.5708
Returns the inverse hyperbolic sine of a number.
=ASINH(number)
=ASINH(1) β 0.8814
Returns the arctangent (inverse tangent) of a number in radians.
=ATAN(number)
=ATAN(1) β 0.7854
Returns the arctangent of the quotient of two numbers in radians. Used for converting x and y coordinates to an angle.
=ATAN2(x_num, y_num)
=ATAN2(1, 1) β 0.7854
Returns the inverse hyperbolic tangent of a number. Input must be between -1 and 1 (exclusive).
=ATANH(number)
=ATANH(0.5) β 0.5493
Rounds a number up, away from zero, to the nearest multiple of significance.
=CEILING(number, significance)
=CEILING(4.3, 1) β 5
Rounds a number up to the nearest integer or multiple of significance. Behavior depends on sign and optional mode.
=CEILING.MATH(number, [significance], [mode])
=CEILING.MATH(-4.3) β -4
Rounds a number up to the nearest multiple of significance. Always rounds away from zero.
=CEILING.PRECISE(number, [significance])
=CEILING.PRECISE(-4.3, 1) β -4
Returns the number of combinations for a given number of items without repetitions.
COMBIN(number, number_chosen)
COMBIN(10, 3) returns 120
Returns the number of combinations for a given number of items with repetitions.
COMBINA(number, number_chosen)
COMBINA(10, 3) returns 220
Returns the cosine of a number. The number is in radians.
COS(number)
COS(PI()/3) returns 0.5
Returns the hyperbolic cosine of a number.
COSH(number)
COSH(1) returns 1.5430806348
Returns the cotangent of a number in radians.
COT(number)
COT(PI()/4) returns 1
Returns the hyperbolic cotangent of a number.
COTH(number)
COTH(2) returns 1.03731472073
Converts radians into degrees.
DEGREES(angle)
DEGREES(PI()) returns 180
Rounds a number up to the nearest even integer.
EVEN(number)
EVEN(3.2) returns 4
Returns e raised to the power of a given number.
EXP(number)
EXP(1) returns 2.718281828
Returns the factorial of a number.
FACT(number)
FACT(5) returns 120
Returns the greatest common divisor of two or more integers.
GCD(number1, [number2], ...)
GCD(24, 36) returns 12
Rounds a number down to the nearest integer.
INT(number)
INT(5.9) returns 5
Returns the least common multiple of two or more numbers.
LCM(number1, [number2], ...)
LCM(4, 6) returns 12
Returns the natural logarithm of a number (base e).
LN(number)
LN(2.718281828) returns 1
Returns the logarithm of a number to a specified base.
LOG(number, [base])
LOG(100, 10) returns 2
Returns the base-10 logarithm of a number.
LOG10(number)
LOG10(1000) returns 3
Returns the remainder after a number is divided by a divisor.
MOD(number, divisor)
MOD(10, 3) returns 1
Returns a number rounded to the nearest multiple of a specified value.
MROUND(number, multiple)
MROUND(17, 4) returns 16
Returns the multinomial of a set of numbers.
MULTINOMIAL(number1, [number2], ...)
MULTINOMIAL(2, 3, 4) returns 1260
Rounds a number up to the nearest odd integer.
ODD(number)
ODD(4.5) returns 5
Returns the value of pi (approximately 3.14159).
PI()
PI() returns 3.141592654
Returns the result of a number raised to a power.
POWER(number, power)
POWER(5, 2) returns 25
Multiplies all the numbers given as arguments and returns the product.
PRODUCT(number1, [number2], ...)
PRODUCT(2, 3, 4) returns 24
Returns the integer portion of a division between two numbers.
QUOTIENT(numerator, denominator)
QUOTIENT(10, 3) returns 3
Converts degrees into radians.
RADIANS(angle)
RADIANS(180) returns 3.141592654
Returns a random number between 0 and 1.
RAND()
RAND() might return 0.54783
Returns a random integer between the specified bottom and top values.
RANDBETWEEN(bottom, top)
RANDBETWEEN(1, 100) returns a random whole number between 1 and 100
Converts an Arabic number to Roman numeral text.
ROMAN(number, [form])
ROMAN(2024) returns MMXXIV
Rounds a number to a specified number of digits.
ROUND(number, num_digits)
ROUND(3.14159, 2) returns 3.14
Rounds a number down, toward zero.
ROUNDDOWN(number, num_digits)
ROUNDDOWN(3.14159, 2) returns 3.14
Rounds a number up, away from zero.
ROUNDUP(number, num_digits)
ROUNDUP(3.14159, 2) returns 3.15
Returns the secant of an angle specified in radians.
SEC(number)
SEC(PI()/4) returns 1.414213562
Returns the hyperbolic secant of a number.
SECH(number)
SECH(1) returns 0.6480542737
Returns the sign of a number: 1 for positive, 0 for zero, and -1 for negative numbers.
SIGN(number)
SIGN(-45) returns -1
Returns the sine of the given angle in radians.
SIN(number)
SIN(PI()/2) returns 1
Returns the hyperbolic sine of a number.
SINH(number)
SINH(1) returns 1.175201194
Returns the square root of a number.
SQRT(number)
SQRT(25) returns 5
Returns the square root of (number * pi).
SQRTPI(number)
SQRTPI(2) returns 2.506628275
Adds all the numbers in a range or list of arguments.
SUM(number1, [number2], ...)
SUM(10, 20, 30) returns 60
Adds the cells specified by a given condition or criteria.
SUMIF(range, criteria, [sum_range])
SUMIF(A1:A5, ">50") returns the sum of values greater than 50
Adds the cells in a range that meet multiple criteria.
SUMIFS(sum_range, criteria_range1, criteria1, ...)
SUMIFS(B1:B5, A1:A5, ">50", C1:C5, "Completed")
Returns the sum of the products of corresponding ranges or arrays.
SUMPRODUCT(array1, [array2], ...)
SUMPRODUCT({1,2,3}, {4,5,6}) returns 32
Returns the sum of the squares of the arguments.
SUMSQ(number1, [number2], ...)
SUMSQ(2, 3) returns 13 (2Β² + 3Β²)
Returns the sum of the difference of squares: β(xΒ² - yΒ²).
SUMX2MY2(array_x, array_y)
SUMX2MY2({2,3}, {1,1}) returns 11
Returns the sum of the sum of squares: β(xΒ² + yΒ²).
SUMX2PY2(array_x, array_y)
SUMX2PY2({2,3}, {1,1}) returns 15
Returns the sum of the squares of differences: β(x - y)Β².
SUMXMY2(array_x, array_y)
SUMXMY2({2,3}, {1,1}) returns 3
Returns the tangent of a number in radians.
TAN(number)
TAN(PI()/4) returns 1
Returns the hyperbolic tangent of a number.
TANH(number)
TANH(1) returns 0.761594156
Truncates a number to an integer by removing the fractional part.
TRUNC(number, [num_digits])
TRUNC(4.567, 1) returns 4.5
Go to View β Freeze Panes to keep a row or column visible while scrolling.
Select data β Click Insert β Chart β Choose a chart type (bar, line, pie, etc.).
=IF(A1>10, "High", "Low") returns "High" if A1 is greater than 10; otherwise, it returns "Low".
Relative (A1): Changes when copied.
Select data β Click Insert β PivotTable β Choose where to place it.
VLOOKUP: Searches vertically in columns.
Click File β Save As, choose a location, enter a filename, and select a format (e.g., .xlsx, .csv).
Select column β Click Data β Text to Columns β Choose delimiter (e.g., comma, space).
Use =SUM(A1:A5) to add values in the range A1 to A5.
Use =COUNTIF(A1:A10, ">50") to count numbers greater than 50 in A1:A10.
Select data β Click Data β Remove Duplicates.
Count numbers: =COUNT(A1:A10)
Select cells β Click Conditional Formatting in the Home tab β Choose a rule (e.g., highlight values greater than 50).
Click the Pivot Table β Click Refresh under the PivotTable Analyze tab.
Select a cell β Data β Data Validation β Set rules (e.g., allow only numbers or dropdown lists).
Excel is a spreadsheet software used for data analysis, calculations, graphing, and automation.
It searches for a value in the first column of a range and returns a value from another column.
Use =A1 & " " & B1 or =CONCATENATE(A1, " ", B1).
Copyrights © 2024 letsupdateskills All rights reserved