Microsoft Excel provides a wide range of built-in mathematical functions that help users perform calculations quickly and efficiently. These functions are essential for financial modeling, statistical analysis, engineering computations, data analytics, and everyday numerical tasks.
Excel Math functions are categorized into various types such as:
This guide focuses on the most commonly used and practical Excel mathematical formulas with syntax and usage examples.
Excel supports direct use of arithmetic operators:
=A1 + B1
=A1 - B1
=A1 * B1
=A1 / B1
=A1 ^ 2
Adds numbers in a range or list of values.
=SUM(A1:A5)
=SUM(10, 20, 30)
Multiplies numbers in a range.
=PRODUCT(A1:A3)=PRODUCT(2, 4, 5)
Returns the absolute (positive) value of a number.
=ABS(-100) β 100
=ABS(A1)Returns the sign of a number: -1 for negative, 0 for zero, 1 for positive.
=SIGN(-45) β -1=SIGN(0) β 0
=SIGN(25) β 1Rounds a number to a specified number of digits.
=ROUND(3.14159, 2) β 3.14=ROUND(123.456, 0) β 123
Always rounds numbers up, away from zero.
=ROUNDUP(3.14159, 2) β 3.15=ROUNDUP(123.4, 0) β 124
Always rounds numbers down, towards zero.
=ROUNDDOWN(3.14159, 2) β 3.14
=ROUNDDOWN(123.9, 0) β 123
Rounds number down to the nearest integer.
=INT(7.9) β 7=INT(-7.9) β -8
Truncates a number to an integer by removing the decimal.
=TRUNC(8.9) β 8=TRUNC(-8.9) β -8
Rounds a number up to the nearest multiple of significance.
=CEILING(7.2, 1) β 8=CEILING(7.2, 0.5) β 7.5
Rounds a number down to the nearest multiple of significance.
=FLOOR(7.8, 1) β 7=FLOOR(7.8, 0.5) β 7.5
Returns the result of a number raised to a power.
=POWER(2, 3) β 8
Returns the square root of a positive number.
=SQRT(25) β 5Returns the square root of (number * PI).
=SQRTPI(2) β β(2Ο)
Returns the remainder after division.
=MOD(10, 3) β 1=MOD(-10, 3) β 2Returns the integer part of division (no remainder).
=QUOTIENT(10, 3) β 3
=QUOTIENT(15, 4) β 3
Returns e raised to the power of a number.
=EXP(1) β 2.718281828
=EXP(2) β 7.389056098
Returns the natural logarithm of a number.
=LN(2.71828) β 1
=LN(1) β 0
Returns the logarithm of a number to a specified base.
=LOG(100, 10) β 2
=LOG(8, 2) β 3
Returns the base-10 logarithm of a number.
=LOG10(1000) β 3
=LOG10(1) β 0
Returns the value of Ο (approximately 3.141592653).
=PI() β 3.141592653
=PI() * A1^2 (area of a circle)
Multiplies corresponding elements and returns the sum of products.
=SUMPRODUCT(A1:A3, B1:B3)
If A1:A3 = {1,2,3} and B1:B3 = {4,5,6}, result = 1Γ4 + 2Γ5 + 3Γ6 = 32
Returns a subtotal in a filtered list or database.
=SUBTOTAL(9, A1:A10) β SUM
=SUBTOTAL(1, A1:A10) β AVERAGE
=SUM(A1:A10 * B1:B10)
β Must be entered as array formula (Ctrl+Shift+Enter in older Excel)
=MMULT(array1, array2)
Performs matrix multiplication. Both arrays must be compatible in size.
RAND() generates a random number between 0 and 1.
=RAND()
RANDBETWEEN(bottom, top) generates a whole number between the given range.
=RANDBETWEEN(1, 100)
=A1 + (A1 * B1)
Where A1 = Price, B1 = Tax rate
=(A1 - 32) * 5/9
=PI() * A1^2
=P * (1 + r/n)^(n*t)
Replace variables with Excel cells or values
Understanding and mastering Excelβs mathematical functions can drastically improve your productivity and accuracy when dealing with numbers. Whether it's simple arithmetic or complex financial modeling, Excel provides powerful tools to assist your calculations.
This guide covered most practical Excel math formulas including:
By combining these with other Excel functions like logical and lookup formulas, you can build dynamic, data-driven spreadsheets for personal and professional use.
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