In Excel: multiply two cells with =A2*B2, multiply a range with =PRODUCT(A2:A10), and copy the formula down when each row needs its own result.
Click the result cell.
Type =, select the first value, type *, then select the second value.
Press Enter and format the result if it represents currency or units.
Drag or double-click the fill handle to copy the multiplication formula down a table.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
Excel uses the asterisk (*) as the multiplication operator. For one row, multiply cell references directly; for many values in one formula, PRODUCT multiplies every number in a range. Because cell references adjust as you copy down, a single row formula can calculate quantity times price for an entire table. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “write a multiplication formula in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
Quantity is in A2 and unit price is in B2. Enter =A2*B2 in C2: 12 units at 4.50 returns 54.00. Fill the formula down and row 3 becomes =A3*B3 automatically. If A2:A5 holds 2, 3, 4 and 5, =PRODUCT(A2:A5) returns 120. Multiplication is the backbone of pricing sheets, inventory totals, unit conversions, weighted scores and any model where a count has to be scaled by a rate, price, percentage or factor. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. If you take one thing from this page on “write a multiplication formula in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
Common mistakes
- Using x instead of *; Excel treats x as text or a name, not multiplication.
- Forgetting parentheses when multiplying part of a larger expression, such as
=(A2+B2)*C2. - Copying a formula with fixed references accidentally; use $ only when one multiplier should stay constant.
- Multiplying numbers stored as text, which can return errors or unexpected zeros until the data is converted.
Frequently asked questions
What symbol multiplies in Excel?
Use the asterisk: =A2*B2.
How do I multiply a whole column by one number?
Put the multiplier in one cell, use an absolute reference like =A2*$E$1, then fill down.
When should I use PRODUCT?
Use PRODUCT when one formula needs to multiply many cells or a whole range, such as =PRODUCT(A2:A10).