Your manager asks, “Why did the total not change after I updated the quantity?” You check the sheet and find that the total was typed manually. This is exactly why formulas matter: Excel should calculate, not you.
What is an Excel formula?
A formula is an instruction that tells Excel to calculate something. Every formula starts with an equals sign =.
For example, =B2*C2 tells Excel to multiply the value in B2 by the value in C2.
=, then use cell references and operators.Formula example
| Quantity | Unit Price | Formula | Result |
|---|---|---|---|
| 5 | ₹450 | =B2*C2 | ₹2,250 |
Common formula operators
+Addition-Subtraction*Multiplication/Division^Power
Use cell references, not fixed numbers
A formula like =B2*C2 is flexible because it uses values already entered in the sheet. If quantity or price changes, the result updates automatically.
A formula like =5*450 works, but it is hardcoded. It will not reflect changes in your data.
Copy formulas with Fill Handle
The Fill Handle is the small square at the bottom-right corner of a selected cell. After creating a formula in the first row, drag the Fill Handle down to copy the formula to other rows.
Excel adjusts the cell references automatically. A formula in row 2 becomes row 3, row 4 and so on.
Build sales formulas
Download one ZIP file containing the practice workbook, challenge workbook, solution workbook, cheat sheet, quiz and answer key.
Mini practice
- Enter Quantity and Unit Price.
- Calculate Gross Sales using
=Quantity*Unit Price. - Calculate Discount Amount.
- Calculate Net Sales.
- Change Unit Price and confirm formulas update.
Quick quiz
- What sign starts every formula?
- Which operator multiplies values?
- Why is
=B2*C2better than=5*450? - What is the Fill Handle used for?
Answers: Equals sign; asterisk; it updates with source cells; copying formulas or patterns.