Basic Excel Formulae
Hello, there welcome guys. Your excel expert Brian here. I am flooded with messages related to excel formula list. So today I thought of giving you with basic excel formulae that most people use. These formulae can be used for various applications.
Excel Formula Basic
Basic Arithmetic Operations
- Addition
- Formula:
=A1 + B1
- Description: Adds the values in cells A1 and B1.
- Formula:
- Subtraction
- Formula:
=A1 - B1
- Description: Subtracts the value in B1 from the value in A1.
- Formula:
- Multiplication
- Formula:
=A1 * B1
- Description: Multiplies the values in cells A1 and B1.
- Formula:
- Division
- Formula:
=A1 / B1
- Description: Divides the value in A1 by the value in B1. Remember, you cannot divide by zero.
- Formula:
- Percentage
- Formula:
=A1 * (B1/100)
- Description: Calculates the percentage (B1) of a number (A1).
- Formula:
Aggregating Data
- SUM
- Formula:
=SUM(A1:A10)
- Description: Adds up all the numbers in the range A1 through A10.
- Formula:
- AVERAGE
- Formula:
=AVERAGE(A1:A10)
- Description: Calculates the average of the numbers in the range A1 through A10.
- Formula:
- MAX
- Formula:
=MAX(A1:A10)
- Description: Returns the largest number in the range A1 through A10.
- Formula:
- MIN
- Formula:
=MIN(A1:A10)
- Description: Returns the smallest number in the range A1 through A10.
- Formula:
Rounding Numbers
- ROUND
- Formula:
=ROUND(A1, num_digits)
- Description: Rounds a number (A1) to a specified number of digits (num_digits).
- Formula:
- ROUNDUP
- Formula:
=ROUNDUP(A1, num_digits)
- Description: Rounds a number (A1) up, away from zero, to a specified number of digits (num_digits).
- Formula:
- ROUNDDOWN
- Formula:
=ROUNDDOWN(A1, num_digits)
- Description: Rounds a number (A1) down, towards zero, to a specified number of digits (num_digits).
- Formula:
Working with Powers and Roots
- POWER
- Formula:
=POWER(number, power)
- Description: Returns the result of a given number raised to a specific power.
- Formula:
- SQRT
- Formula:
=SQRT(number)
- Description: Returns the square root of a specified number.
- Formula:
Miscellaneous
- ABS
- Formula:
=ABS(number)
- Description: Returns the absolute value of a number, which is the number without its sign.
- Formula:
- MOD
- Formula:
=MOD(number, divisor)
- Description: Returns the remainder after a number is divided by a divisor.
- Formula: