Excel Practice Test

โ–ถ

If you've ever stared at a column of prices and wondered how to multiply them by a tax rate without typing the same formula fifty times, you're in the right place. Excel offers a surprising number of ways to multiply, and each one shines in a different situation. Some are perfect for quick math on two cells. Others let you crunch entire ranges in a single keystroke. A few are designed for messy real-world data where text mingles with numbers and you'd rather not babysit every single cell.

This guide walks through every multiplication method Excel supports, from the humble asterisk to the mighty SUMPRODUCT. You'll see real formulas, copy-paste examples, and the exact moments when one approach beats another. By the end, you'll know which tool to reach for, no matter how big or weird your dataset gets. We'll also cover the errors you'll inevitably hit and the small fixes that turn frustrating #VALUE! messages into clean numbers.

The fastest answer

To multiply two numbers in Excel, type =A1*B1 into a cell and press Enter. The asterisk (*) is Excel's multiplication operator. For ranges, use =PRODUCT(A1:A10). For multiplying paired columns and adding the results, use =SUMPRODUCT(A1:A10, B1:B10). Each of these is covered in detail below with real examples.

Before we dig into each method, it helps to know why Excel even has more than one way to multiply. The asterisk works on individual cells. The PRODUCT function handles ranges and ignores text. SUMPRODUCT mixes multiplication with addition into a single elegant step. Paste Special lets you bulk-update existing values without writing any formula at all. Each tool exists because someone, somewhere, needed it. The trick is knowing which one matches the problem in front of you.

Picking the wrong tool isn't fatal, but it does waste time. Using the asterisk on a 500-row range means typing five hundred formulas. Using PRODUCT on a single cell is overkill. Using a formula when Paste Special would do the job in two clicks adds clutter to your workbook. The good news: once you've used each method a few times, choosing becomes second nature.

Four ways to multiply at a glance

๐Ÿ“‹ Asterisk (*)

The simplest way. Type =A1*B1 for two cells, =A1*B1*C1 for three, or =A1*0.08 to multiply by a constant like an 8% tax rate. The asterisk works exactly like a calculator. It's perfect for quick, one-off math and for paired-column products you'll drag down with the fill handle.

๐Ÿ“‹ PRODUCT

Use =PRODUCT(A1:A10) when you want to multiply every value in a range. PRODUCT can also take mixed inputs, like =PRODUCT(A1, B1, 5). A big perk: it skips blank cells and text, which the asterisk doesn't. That makes it the safer choice for spreadsheets that aren't perfectly clean.

๐Ÿ“‹ SUMPRODUCT

This one multiplies arrays element-by-element, then adds the results. =SUMPRODUCT(A1:A10, B1:B10) gives you the total of A1*B1 + A2*B2 + ... + A10*B10. Great for weighted averages, sales totals, and conditional math without IF statements.

๐Ÿ“‹ Paste Special

Copy a number, select a range, then go to Home โ†’ Paste โ†’ Paste Special โ†’ Multiply. Excel multiplies every selected cell by the copied number. No formula needed. Ideal when you want to permanently update values, like converting prices to a new currency or adjusting for inflation.

Now let's look at each approach in real-world detail, starting with the workhorse you'll probably use most: the asterisk operator. After that we'll work through PRODUCT, the column-by-column patterns, Paste Special, SUMPRODUCT, and the more advanced array and matrix tools. Each section includes the formula, a real-world scenario, and the gotchas that catch beginners off guard.

Multiplication methods at a glance

๐Ÿ”ด Asterisk operator
  • Syntax: =A1*B1
  • Best for: Quick math, two or three cells
  • Handles text?: No โ€” returns #VALUE!
๐ŸŸ  PRODUCT function
  • Syntax: =PRODUCT(A1:A10)
  • Best for: Multiplying entire ranges
  • Handles text?: Yes โ€” skips text and blanks
๐ŸŸก SUMPRODUCT
  • Syntax: =SUMPRODUCT(A1:A10, B1:B10)
  • Best for: Weighted totals, paired columns
  • Handles text?: Returns #VALUE! if non-numeric
๐ŸŸข Paste Special โ†’ Multiply
  • Syntax: Copy โ†’ Paste Special โ†’ Multiply
  • Best for: Bulk updates without formulas
  • Handles text?: Skips non-numeric cells

Let's start with the most basic case. You have a number in A1 and another in B1, and you want their product. The formula is =A1*B1. That's it. Press Enter and Excel does the rest. You can chain as many cells as you want, like =A1*B1*C1*D1, and Excel will multiply them all left to right. There's no upper limit you'll hit in normal use โ€” long chains slow down readability long before they slow down Excel.

Multiplying by a constant is just as easy. Say cell A1 holds a price and you need to add 8% sales tax. Type =A1*1.08. Or if you want only the tax amount, use =A1*0.08. Constants don't need cell references at all. You can mix freely: =A1*B1*1.08 multiplies two cells and then bumps the result up by 8%. Excel respects the standard math order, so you can also write =(A1+B1)*1.08 and the parentheses force addition first.

Things get interesting when you want to multiply a whole column by a single number. Say column A has 100 prices and cell B1 has the tax rate. You don't want to type =A1*B1, =A2*B1, =A3*B1, and so on. There's a trick called absolute references that fixes this in seconds. It's one of those tiny features that pays for itself ten times over once you understand it.

Write =A1*$B$1 in cell C1. The dollar signs lock B1 in place. Now drag the fill handle (that little square in the bottom-right corner of the cell) down through C100. Excel updates A1 to A2, A3, A4 โ€” but B1 stays glued. Same constant, every row. Done. If you ever change the tax rate, just edit B1 and every row updates instantly. That's the magic of separating data from formulas.

Reference types decoded

๐Ÿ”ด Relative
  • Syntax: A1
  • When dragged: Both row and column shift
  • Use case: Multiplying paired cells in two columns
๐ŸŸ  Absolute
  • Syntax: $A$1
  • When dragged: Stays locked
  • Use case: Multiplying a column by a constant
๐ŸŸก Mixed
  • Syntax: $A1 or A$1
  • When dragged: One axis locked, the other shifts
  • Use case: Multiplication tables, grids

If you're working in Excel 365 or Excel 2021, dynamic arrays make this even cleaner. Just type =A1:A100*B1:B100 in one cell and Excel spills the result down 100 rows automatically. No dragging, no fill handle. The blue spill border shows you the whole range. If you delete a value in the source range, the spill updates instantly. Spilled arrays also play nicely with named ranges, so you can write =Prices*TaxRate if you've named those cells.

Older Excel versions don't have dynamic arrays. There you'd use =A1*B1 and copy it down, which works just fine but takes one more step. If you're switching between Excel versions across teams, default to the drag-down approach. It works everywhere and never throws compatibility errors.

Check that all source cells are numbers โ€” no stray text or apostrophes
Decide whether to use absolute references for any constant
Format the result column (currency, percentage, decimals) before filling down
Use Ctrl+Shift+End to confirm your data range matches your formula range
Save a backup if you're about to overwrite values with Paste Special

Next up: the PRODUCT function. While the asterisk works great for two or three cells, it gets clunky for ranges. Imagine multiplying twenty cells together with =A1*A2*A3*...*A20. Painful. PRODUCT solves it: =PRODUCT(A1:A20) does the exact same thing in fewer keystrokes. The function name is older than dynamic arrays โ€” it's been in Excel since the early days โ€” so it works in literally every version.

PRODUCT also accepts mixed inputs. =PRODUCT(A1:A5, B1, 2) multiplies the range A1:A5, then multiplies by B1, then doubles the result. You can pass up to 255 separate arguments. That's enough for almost any real-world case. If you need more than 255 factors, you've probably got bigger problems.

That difference matters more than you'd think. Real-world spreadsheets rarely come pre-cleaned. You'll often have header text mixed in, blank rows from copy-paste, or notes scattered around. PRODUCT shrugs and keeps going. The asterisk crashes. If you want a deeper dive into formula building blocks, check out our Excel formula basics guide. It covers operators, function syntax, and how Excel parses every formula you write.

One small but important note: PRODUCT returning skipped cells silently can hide data quality problems. If you expect every cell to have a number and PRODUCT gives you a clean answer, you might never realise some cells were blank. For mission-critical work, pair PRODUCT with a COUNT or COUNTA check to confirm the cell count matches what you expect.

Three flavours of PRODUCT

๐Ÿ“‹ PRODUCT with range

The standard form: =PRODUCT(A1:A10). Excel multiplies every numeric value in A1 through A10. Blanks and text are ignored. If every cell is blank, the result is 0. If only one cell has a number, the result is that number times nothing โ€” so it returns the number itself.

๐Ÿ“‹ PRODUCT with mixed args

You can mix ranges, single cells, and constants: =PRODUCT(A1:A5, B1, 2.5). Up to 255 arguments. Useful when one factor is a hardcoded multiplier like a unit conversion. For example, kilograms to pounds: =PRODUCT(A1:A10, 2.20462).

๐Ÿ“‹ Nested PRODUCT

You can nest PRODUCT inside other functions. =ROUND(PRODUCT(A1:A5), 2) rounds the result to two decimals. Or =IF(B1="yes", PRODUCT(A1:A5), 0) only multiplies if a condition is met. PRODUCT also works inside SUMPRODUCT and array formulas for compound calculations.

Now let's tackle multiplying two columns together. This is one of the most common spreadsheet tasks ever. Picture a sales sheet: column A has unit prices, column B has quantities sold, and you need column C to show the total revenue per row. You'll do this kind of multiplication thousands of times across your career, so it's worth nailing the right approach.

The classic approach: type =A2*B2 in C2, then drag the fill handle down. Each row gets its own product. Quick, clean, and works in every version of Excel ever made. If you double-click the fill handle (the little square in the bottom-right of the selected cell), Excel auto-fills down to match the length of the adjacent column. That's a huge time-saver on large datasets.

Take the Excel Cert Practice Test

If your data lives in an Excel Table (insert with Ctrl+T), the formula gets even better. Excel uses structured references like =[@Price]*[@Qty]. The names match your column headers. The formula auto-fills as you add new rows. No more dragging. This is one of the most underused features in Excel, and it saves real time. Tables also automatically extend formatting, banded rows, and any chart references when you add data, so the upgrade pays off in many ways at once.

Want to learn the related operations too? Our Excel multiplication formula guide drills deeper into syntax variations, while our Excel subtraction formula walkthrough covers the inverse pattern. Mastering all four basic operations โ€” addition, subtraction, multiplication, division โ€” gives you the foundation for almost any formula you'll ever build.

1985
Year Excel was first released
1,048,576
Maximum rows per worksheet
16,384
Maximum columns per worksheet
255
Max arguments PRODUCT accepts

Time for one of Excel's coolest tricks: Paste Special โ†’ Multiply. Suppose you have a price list and your boss says, 'Increase every price by 10%.' You could write a formula in a new column, then copy-paste-values back over the originals. That works, but it's three steps. Paste Special does it in one. The reason most people don't know about it: there's no obvious menu entry. You have to dig into Paste Special and look at the Operation section.

Once you've used it a few times, you'll find yourself reaching for it constantly. It's especially nice for currency conversions, percentage adjustments, unit changes, or applying a flat tax rate to an existing list of values that don't need their own formula columns.

How to use Paste Special Multiply

edit

In any blank cell, type the number you want to multiply by. For a 10% increase, type 1.10. Press Enter.

copy

Select the cell and press Ctrl+C. The cell gets the marching-ants border.

select

Highlight all the cells you want to multiply. They can be in one column, several columns, or scattered (use Ctrl+click).

settings

Right-click and choose Paste Special, or press Ctrl+Alt+V. The Paste Special dialog opens.

check

Under Operation, select Multiply. Click OK. Every selected cell is now multiplied by your number, in place. No formulas added.

Paste Special is destructive โ€” once the values change, you can't undo them with a simple Ctrl+Z if you've done other things since. Always save a copy first if the data matters. The flip side: when you don't want extra columns cluttering your sheet, this is the cleanest way to apply a bulk change. It's especially handy when you're handing a workbook to someone who might not understand how to interpret a formula column.

One subtle gotcha: Paste Special multiplies cells that already contain formulas too. If a cell holds =A1+B1, after the multiply it becomes =(A1+B1)*1.10. That might be exactly what you want, or it might quietly break a calculation chain. Always preview a small selection before doing this on hundreds of cells.

Now let's meet SUMPRODUCT, one of the most powerful functions in all of Excel. The name says it all: it multiplies arrays together, then sums the results. The basic form is =SUMPRODUCT(A1:A10, B1:B10). Excel calculates A1*B1 + A2*B2 + ... + A10*B10 in a single cell. No helper column needed. It's been around since Excel 97 and is one of the few functions that hasn't changed in decades.

Where does this shine? Weighted averages. Sales totals. Anywhere you'd otherwise build a column of products and then sum it. SUMPRODUCT does both steps at once. It's also the function of choice for conditional sums in older Excel versions that lack SUMIFS, because it can multiply boolean conditions by numeric values to filter on the fly.

Real SUMPRODUCT use cases

๐Ÿ”ด Total revenue
  • Setup: Prices in A, quantities in B
  • Formula: =SUMPRODUCT(A2:A100, B2:B100)
  • Returns: Total dollars across all rows
๐ŸŸ  Weighted average
  • Setup: Scores in A, weights in B
  • Formula: =SUMPRODUCT(A2:A10, B2:B10)/SUM(B2:B10)
  • Returns: Weighted mean score
๐ŸŸก Conditional sum
  • Setup: Region in A, sales in B
  • Formula: =SUMPRODUCT((A2:A100="East")*(B2:B100))
  • Returns: Sum of East-region sales only

That third use case is where SUMPRODUCT really earns its keep. By multiplying a TRUE/FALSE array (which Excel treats as 1s and 0s) by a numeric array, you can do conditional math without writing IF formulas. The expression (A2:A100="East") returns an array of TRUEs and FALSEs. Multiply by sales values, sum the result, and you've got region-specific totals in one formula. You can stack multiple conditions: =SUMPRODUCT((A2:A100="East")*(C2:C100>100)*(B2:B100)) sums only sales above 100 in the East region.

Try the FREE Excel Formulas Quiz

For full-on matrix math, Excel offers MMULT. This one is rare in everyday use but vital for statistics, engineering, and machine learning. MMULT takes two matrices and returns their matrix product. The syntax is =MMULT(array1, array2). The number of columns in array1 must match the number of rows in array2, or you get a #VALUE! error. Matrix multiplication isn't just elementwise multiplication โ€” it's a structured combination where each cell of the output depends on a row from one input and a column from the other.

In Excel 365, MMULT spills automatically. In older versions, you'd select the output range first and confirm with Ctrl+Shift+Enter as an array formula. Most users never need MMULT, but when you do, nothing else will substitute. Statisticians use it for regression coefficients. Engineers use it for transformations. If you've never heard of it before, you almost certainly don't need it โ€” but it's good to know it exists.

Let's pause for a quick reality check. The asterisk, PRODUCT, SUMPRODUCT, and Paste Special cover roughly 99% of multiplication needs. MMULT and array formulas exist for the edge cases. Don't reach for them unless you genuinely need matrix math or you're stuck on legacy Excel. For most people, mastering the first four methods is plenty to handle every spreadsheet you'll ever encounter. The remaining one percent is interesting trivia, not daily survival.

Choosing wisely also makes your spreadsheets easier for others to read. A coworker who opens your file should be able to glance at a formula and understand what's happening. The asterisk is universally understood. PRODUCT is clear from its name. SUMPRODUCT is more advanced but still self-documenting. Avoid being clever with array formulas when a simple drag-down would do the job.

Pros

  • Asterisk is faster to type for two or three cells
  • Asterisk works in every Excel version, no function knowledge needed
  • PRODUCT handles ranges in one short formula
  • PRODUCT ignores blanks and text, making it safer for messy data
  • PRODUCT accepts up to 255 mixed arguments

Cons

  • Asterisk crashes on text values with #VALUE!
  • Asterisk gets unwieldy past three or four cells
  • PRODUCT is overkill for simple two-cell math
  • PRODUCT silently skips text โ€” could mask bad data
  • Neither handles paired-column products as cleanly as SUMPRODUCT

Now let's talk about the errors you'll hit and how to fix them. Excel gives you a small but predictable set of error codes when multiplication goes wrong. Knowing what each one means will save hours of frustration. The error messages look intimidating at first, but they're really Excel's way of being helpful โ€” each code points to a specific category of problem you can fix in a few clicks.

The most common one is #VALUE!, which usually means text snuck into a cell that should have been a number. The fix is almost always either changing the cell format or using the VALUE function to coerce the text into a number. Other errors like #REF! and #NAME? are even easier to diagnose once you know what to look for.

Common multiplication errors

๐Ÿ”ด #VALUE!
  • Cause: Text in a cell where Excel expected a number
  • Fix: Use VALUE() to convert, or check formatting
  • Example: =A1*B1 where A1 is 'apple'
๐ŸŸ  #NAME?
  • Cause: Misspelled function name
  • Fix: Check spelling โ€” PRODCT vs PRODUCT
  • Example: =PRODCT(A1:A10)
๐ŸŸก #REF!
  • Cause: Formula references a deleted cell or sheet
  • Fix: Rebuild the reference or use Ctrl+Z to undo the deletion
  • Example: =A1*B1 after deleting column B
๐ŸŸข #DIV/0!
  • Cause: Sometimes appears when chaining multiplication and division
  • Fix: Wrap in IFERROR or check for zero divisors
  • Example: =A1*B1/C1 where C1 is 0

The trickiest of these is #VALUE! caused by numbers stored as text. You'll often see this after pasting from a website or a CSV. The cell looks numeric but has a tiny green triangle in the corner. Click the cell, then click the warning icon and choose 'Convert to Number.' Or wrap your formula: =VALUE(A1)*B1. Both fixes work; the warning icon is faster for one-off cells, while the VALUE wrapper handles cases where your data refreshes regularly.

Another sneaky source of trouble: leading apostrophes. If a cell shows '42 in the formula bar, that apostrophe forces text formatting. Remove it by retyping or using Find & Replace. While you're learning multiplication, our how to divide in Excel guide shows the equivalent fixes for division errors. The patterns repeat across every basic operator, so once you've solved one, you've solved them all.

Let's wrap up with some real-world tips that go beyond raw syntax. These are the small habits that separate beginners from people who actually trust their spreadsheets. Habits matter more than knowing every function โ€” a tidy workbook with simple formulas beats a clever one nobody can audit.

First, always format your result cells before you copy formulas down. Setting currency or percentage formatting after the fact is annoying, especially across hundreds of rows. Decide upfront. Second, name your ranges. Instead of =A1*$B$1, you can write =Price*TaxRate. The formula reads like English and survives column reordering. Named ranges live in the Name Manager (Formulas โ†’ Name Manager) and apply to the whole workbook unless you scope them to a sheet.

Use Excel Tables (Ctrl+T) so formulas auto-fill on new rows
Name single-cell constants for readable formulas
Wrap risky multiplications in IFERROR
Use absolute references ($) when one factor is a constant
Audit with F9 โ€” select part of a formula and press F9 to see its value
Press F2 to enter edit mode and check colored cell references at a glance
Save a backup before any Paste Special operation that overwrites data

One more powerful pattern worth knowing: combining multiplication with conditions. Say you have an order list with quantities in B and a flag column in C marking whether the order shipped. To get the total quantity shipped, you could use =SUMPRODUCT((C2:C100="yes")*(B2:B100)). The condition becomes 1 or 0, then multiplies into the quantity, and SUMPRODUCT adds it all up. One formula, no helper columns, no IF statements. It feels like magic the first time it works.

You can also use array math with the IF function: =IF(A1>0, A1*B1, 0) only multiplies when A1 is positive, otherwise returns zero. This is the more readable approach for single-row checks. SUMPRODUCT shines when you need to apply the condition across an entire range and then aggregate.

Try the FREE Excel Functions Quiz

If you do this kind of conditional math often, modern Excel also offers SUMIFS, COUNTIFS, and the newer FILTER function. SUMPRODUCT is more flexible and works in older versions, but the named conditional functions read more clearly. Pick the tool that fits your team and your Excel version. There's rarely a single 'right' answer โ€” clarity for your audience usually wins over cleverness.

Want a printable cheat sheet of every common Excel formula? Our Excel formulas cheat sheet bundles the top 50 functions into one quick-reference page. Print it, stick it next to your monitor, and refer to it any time you forget the syntax for something you only use once a quarter.

Two cells: Asterisk. =A1*B1. Done.
Whole range: PRODUCT. =PRODUCT(A1:A20).
Two columns multiplied and summed: SUMPRODUCT.
Bulk update existing values: Paste Special โ†’ Multiply.
Conditional multiplication: SUMPRODUCT with a TRUE/FALSE array.
Matrix math: MMULT.

Multiplication seems simple at first glance โ€” just press the asterisk and go. But once you start working with real data, the right method depends on the size of your range, whether your cells contain text, whether you want a formula or a one-time update, and whether you need conditions. The good news: every method we covered uses plain English logic. There's nothing magical about PRODUCT or SUMPRODUCT. They're shortcuts. Once you've used each one a few times, you'll know instantly which to reach for.

Practice with your own data. Pick a real spreadsheet, try multiplying two columns three different ways, and see which feels best. That's how the muscle memory sticks. And the next time someone asks you 'how do I multiply in Excel?' you'll have an answer for every situation they bring you, from a single tax calculation to a full sales pipeline aggregation.

Multiply in Excel Questions and Answers

What is the multiplication symbol in Excel?

Excel uses the asterisk (*) as the multiplication operator. For example, =A1*B1 multiplies the values in cells A1 and B1. The 'x' character is not recognized as multiplication in Excel formulas โ€” only the asterisk works.

How do I multiply a whole column by a single number in Excel?

Use an absolute reference. If your numbers are in column A and your multiplier is in cell B1, type =A1*$B$1 in cell C1, then drag the fill handle down. The dollar signs lock B1 in place while A1 updates row by row. You can also use Paste Special โ†’ Multiply for a one-time bulk update.

What is the difference between * and the PRODUCT function?

The asterisk multiplies individual cells but errors out on text values. The PRODUCT function handles ranges (like =PRODUCT(A1:A10)) and silently skips blank cells and text. Use the asterisk for quick math on a few cells; use PRODUCT for ranges or messy data.

How do I multiply two columns in Excel and add the results?

Use SUMPRODUCT. The formula =SUMPRODUCT(A1:A10, B1:B10) multiplies A1*B1 + A2*B2 + ... + A10*B10 and returns the total in one cell. This is perfect for revenue totals, weighted averages, and any scenario where you'd otherwise build a helper column.

Why does my multiplication formula return #VALUE!?

The most common cause is a text value in one of the cells. Check that all referenced cells contain numbers, not text. Look for a small green triangle in the corner of the cell โ€” that's Excel warning you about a number stored as text. Click the warning icon and choose Convert to Number, or wrap your formula like =VALUE(A1)*B1.

Can I multiply cells from different sheets in Excel?

Yes. Use the sheet name and an exclamation point in the reference, like =Sheet1!A1*Sheet2!B1. If the sheet name has a space, wrap it in single quotes like ='Sales Q1'!A1*'Sales Q2'!B1. PRODUCT works the same way: =PRODUCT(Sheet1!A1:A10, Sheet2!B1).

How do I use Paste Special to multiply a range?

Type your multiplier in any blank cell and press Ctrl+C to copy it. Select the range you want to update, then press Ctrl+Alt+V to open Paste Special. Choose Multiply under Operation and click OK. Every cell in the range gets multiplied by your number, in place. No formulas added.
โ–ถ Start Quiz