Introduction to Excel Formulas
Introduction to Excel Formulas
Formula: =A1 + B1
How to Use: Place two numerical values in cells A1 and B1, then type =A1 + B1 in
another cell to get the sum.
Example: If A1 = 10 and B1 = 5, then =A1 + B1 returns 15.
2. Subtraction
Formula: =A1 - B1
Example: If A1 = 10 and B1 = 5, then =A1 - B1 returns 5.
3. Multiplication
Formula: =A1 * B1
Example: If A1 = 10 and B1 = 5, then =A1 * B1 returns 50.
4. Division
Formula: =A1 / B1
Example: If A1 = 10 and B1 = 5, then =A1 / B1 returns 2.
5. Exponentiation
Formula: =A1^B1
Example: If A1 = 2 and B1 = 3, then =A1^B1 returns 8.
6. Modulus (Remainder)
Formula: =SUM(A1:A10)
How to Use: Adds all values in the range.
Example: If A1:A5 contains {10, 20, 30, 40, 50}, then =SUM(A1:A5) returns 150.
2. AVERAGE
Formula: =AVERAGE(A1:A10)
How to Use: Computes the mean of the selected range.
Example: If A1:A5 contains {10, 20, 30, 40, 50}, then =AVERAGE(A1:A5) returns 30.
3. MIN/MAX
4. COUNT/COUNTA
Logical Formulas
1. IF
2. IFS
3. AND/OR/NOT
Text Functions
LEFT/RIGHT/MID: Extract specific parts of a text.
LEN: Returns the number of characters in a text.
TEXT: Formats numbers as text.
SUBSTITUTE: Replaces text in a string.
Practice Exercises
These notes provide an in-depth guide to essential Excel formulas with detailed explanations,
examples, and practice exercises for effective learning.