-
Creating Formulas:
- Basic Arithmetic Operators: Excel supports basic arithmetic operators for calculations, including addition (+), subtraction (-), multiplication (*), and division (/). For example, "=A1+B1" adds the values in cells A1 and B1.
- Cell References: You can reference cells in formulas by using their column and row labels. For example, "=A1+A2" adds the values in cells A1 and A2.
- Parentheses: Parentheses can be used in formulas to control the order of operations. For example, "=(A1+B1)*C1" multiplies the sum of cells A1 and B1 by the value in C1.
- Formula Precedence: Excel follows the standard mathematical order of operations (PEMDAS/BODMAS) when evaluating formulas.
-
Using Built-in Functions:
- SUM: The SUM function adds up a range of cells. For example, "=SUM(A1:A5)" calculates the sum of values in cells A1 to A5.
- AVERAGE: The AVERAGE function calculates the average of a range of cells. For example, "=AVERAGE(B1:B10)" computes the average of values in cells B1 to B10.
- COUNT: The COUNT function counts the number of cells that contain numerical values. For example, "=COUNT(C1:C10)" counts the number of cells with numerical values in cells C1 to C10.
- MAX and MIN: The MAX and MIN functions return the maximum and minimum values in a range of cells, respectively. For example, "=MAX(D1:D10)" finds the highest value in cells D1 to D10.
- IF: The IF function allows you to perform conditional calculations based on specified criteria. For example, "=IF(A1>10, "Yes", "No")" checks if the value in cell A1 is greater than 10 and returns "Yes" or "No" accordingly.
-
AutoFill:
- AutoFill is a time-saving feature that automatically extends a formula or pattern when you drag the fill handle (a small square) located in the bottom-right corner of a selected cell.
- When using AutoFill with formulas, Excel adjusts the cell references automatically based on the pattern it detects. For example, if you have a formula "=A1+B1" in cell C1 and you drag the fill handle down to cell C2, Excel will adjust the formula to "=A2+B2".