How to Do Multiplication in Excel: Complete Guide to Formulas, Functions, and Shortcuts

Learn how to do multiplication in Excel using formulas, PRODUCT function, and shortcuts. Step-by-step guide for beginners and advanced users.

Microsoft ExcelBy Katherine LeeMay 29, 202623 min read
How to Do Multiplication in Excel: Complete Guide to Formulas, Functions, and Shortcuts

Knowing how to do multiplication in Excel is one of the most fundamental skills any spreadsheet user can develop, whether you are calculating sales totals, building financial models, or scaling quantities across hundreds of rows. Excel offers several methods for multiplying numbers, and choosing the right approach can save you significant time and reduce costly errors.

From the simple asterisk operator to the powerful PRODUCT function, mastering these techniques will make your spreadsheets faster, cleaner, and more professional. If you want to deepen your Excel knowledge further, our guide on how to do multiplication in excel covers advanced financial applications in detail.

Excel multiplication is not limited to simple two-number products. You can multiply entire columns together, apply a constant multiplier across a range, combine multiplication with conditional logic using IF statements, or even use array formulas to calculate weighted sums across thousands of rows simultaneously. Understanding when to use each method is just as important as knowing the syntax. Beginners often default to writing out individual cell references, while experienced users harness the PRODUCT function or structured table references to keep their workbooks maintainable and scalable over time.

One of the first things to understand is that Excel treats multiplication as a basic arithmetic operation using the asterisk (*) symbol. When you type =A2*B2 in a cell, Excel multiplies the value in A2 by the value in B2 and displays the result. This approach is intuitive and mirrors the notation used in algebra, making it accessible for anyone transitioning from pen-and-paper calculations or a basic calculator background. However, the asterisk method has limitations when dealing with large ranges of numbers, which is where the PRODUCT function becomes invaluable.

Beyond basic cell multiplication, Excel supports a concept called mixed references that becomes critically important when copying multiplication formulas across a spreadsheet. An absolute reference like $B$1 stays fixed when you drag a formula down a column, while a relative reference like B1 shifts to match the new row. Mixing these reference types — for example, =A2*$B$1 — lets you apply a single tax rate or price multiplier stored in one cell to an entire list of base values without manually updating each formula. This technique is used constantly in real-world financial modeling and budgeting workbooks.

The PRODUCT function in Excel is designed specifically for multiplying a range of numbers. Instead of writing =A1*A2*A3*A4*A5, you can write =PRODUCT(A1:A5) and Excel will multiply all five values together in one clean formula. This is particularly useful when your data spans dozens or even hundreds of rows, or when you need to multiply values that may sometimes be blank — PRODUCT conveniently ignores empty cells, whereas the asterisk operator would return zero if any cell in the chain is empty, which can corrupt your results silently.

Excel also supports array multiplication, which allows you to multiply two ranges together element-by-element and then sum the results in a single step. The SUMPRODUCT function is the most common tool for this purpose. For example, =SUMPRODUCT(B2:B10, C2:C10) multiplies each price in column B by the corresponding quantity in column C and returns the grand total — all without requiring a helper column. This technique is widely used in inventory valuation, payroll calculations, and weighted average computations, and it executes faster than helper-column approaches in large datasets.

Understanding how Excel handles multiplication order of operations is equally important. Excel follows standard mathematical precedence: multiplication and division are evaluated before addition and subtraction, and parentheses can override that order. Writing =2+3*4 returns 14, not 20, because the multiplication happens first. Wrapping the addition in parentheses — =(2+3)*4 — produces 20. When building complex formulas that combine multiplication with other operations, always use parentheses explicitly to ensure Excel calculates the result you intend, rather than relying on implicit precedence that can produce subtle, hard-to-debug errors.

Excel Multiplication by the Numbers

📊3+Core Multiplication Methods*, PRODUCT, SUMPRODUCT
⏱️80%Time SavedPRODUCT vs manual chaining
🎯255Max ArgumentsPRODUCT function limit
💻1M+Rows SupportedExcel 2019 and Microsoft 365
🏆Top 5Most-Used FunctionsPRODUCT ranks in daily Excel use
Microsoft Excel - Microsoft Excel certification study resource

How to Do Multiplication in Excel: Step-by-Step Methods

✏️

Use the Asterisk Operator for Simple Multiplication

Click any empty cell and type =A1*B1 to multiply the values in those two cells. Press Enter to confirm. This is the fastest approach for multiplying two specific cells together and works identically across all Excel versions.
📋

Apply the PRODUCT Function for Range Multiplication

Type =PRODUCT(A1:A10) to multiply all values in the range A1 through A10 together. PRODUCT accepts up to 255 arguments and safely ignores blank cells, making it ideal for long lists where some entries may be missing.
🔄

Use Absolute References to Multiply a Column by a Constant

Enter your multiplier (e.g., a tax rate or unit price) in a single cell like B1. Then in C2 type =A2*$B$1 and drag the formula down column C. The dollar signs lock B1 so every row multiplies against the same constant value.
📊

Use SUMPRODUCT for Weighted Totals

Type =SUMPRODUCT(B2:B10, C2:C10) where B holds prices and C holds quantities. Excel multiplies each pair element-by-element and returns their sum in one formula — no helper column needed and no intermediate results to manage.
🎯

Paste Special Multiply to Transform Existing Data

Type your multiplier in any empty cell and copy it. Select the target range, open Paste Special (Ctrl+Alt+V), choose Multiply, and click OK. Excel multiplies every selected cell by your value in place — perfect for bulk currency conversions or unit changes.

The PRODUCT function is Excel's dedicated tool for multiplying a series of numbers, and it behaves differently from a chain of asterisk operators in one key way: it ignores blank and text cells instead of treating them as zero. This distinction matters enormously in real-world spreadsheets where your data may have gaps.

If you chain =A1*A2*A3 and A2 is empty, Excel treats the blank as zero and returns zero for the entire formula. With =PRODUCT(A1:A3), an empty A2 is simply skipped, and you get the product of the remaining values — preserving the integrity of your calculation without requiring you to clean up the dataset first.

The PRODUCT function accepts up to 255 individual arguments, and each argument can be a single cell, a range, or even a constant. For example, =PRODUCT(A1:A10, 1.08) multiplies all values in A1:A10 together and then multiplies the result by 1.08, effectively applying an 8% uplift in a single step. This composability makes PRODUCT extremely flexible for scenarios like applying sales tax, markup percentages, or conversion factors to a running product without requiring additional formula steps or helper columns in your spreadsheet layout.

When working with large financial models or data tables, the PRODUCT function pairs naturally with other Excel capabilities. You can nest PRODUCT inside an IF statement to conditionally multiply values — for instance, =IF(C2="Active", PRODUCT(A2:B2), 0) returns the product of A2 and B2 only when column C indicates an active record. This kind of conditional multiplication is common in commission calculation sheets, project costing workbooks, and inventory valuation models where not every row should contribute to the final totals.

SUMPRODUCT is one of Excel's most versatile functions and deserves special attention alongside PRODUCT. While PRODUCT multiplies all values in a range together into one number, SUMPRODUCT multiplies corresponding elements across two or more arrays and then sums all those individual products. The classic use case is calculating total revenue: =SUMPRODUCT(price_range, quantity_range). But SUMPRODUCT also supports conditional calculations by incorporating TRUE/FALSE logic directly inside the array multiplication. For example, =SUMPRODUCT((region="West")*(sales)) sums only the sales values where the region equals West, functioning like a SUMIF but without the limitations of that function's syntax.

Array formulas using Ctrl+Shift+Enter (in older Excel versions) or the modern dynamic array syntax (in Excel 365 and Excel 2019) extend multiplication even further. With dynamic arrays, a formula like =A2:A10*B2:B10 entered in a single cell will automatically spill results into ten cells without you having to select the output range first. This spill behavior is one of the most significant improvements in modern Excel, as it allows you to build multiplication tables, apply bulk transformations, and create derived columns with a single concise formula instead of copying a formula down manually across dozens of rows.

Multiplication also plays a central role in matrix operations within Excel. The MMULT function performs true matrix multiplication between two arrays, which is essential in statistical modeling, linear algebra applications, and multi-variable financial calculations. For instance, multiplying a 3×3 coefficient matrix by a 3×1 vector of variables yields a 3×1 result vector — a calculation that would require nine separate formulas if done with individual cell references. MMULT handles this in a single formula, making it a powerful tool for anyone working with simulation models, regression outputs, or optimization problems inside Excel.

Understanding how multiplication interacts with Excel's formatting system is also important. Excel stores numbers with full floating-point precision internally, even when the display rounds values to two decimal places. Multiplying a series of rounded displayed values can sometimes produce results that appear incorrect because the underlying full-precision numbers are being used in the calculation. Using the ROUND function explicitly — for example, =PRODUCT(ROUND(A1,2), ROUND(B1,2)) — controls this behavior and ensures your multiplication operates on the same values the user can see, which is a critical distinction in financial reporting and compliance contexts where displayed and calculated values must match exactly.

FREE Excel Basic and Advance Questions and Answers

Test your Excel fundamentals and advanced formula skills with free practice questions

FREE Excel Formulas Questions and Answers

Practice Excel formula writing including multiplication, SUM, IF, and VLOOKUP challenges

Excel Multiplication Techniques: VLOOKUP, Merge, and Advanced Methods

Combining VLOOKUP with multiplication is a powerful technique for applying price lists or rate tables dynamically. For example, =VLOOKUP(A2, PriceTable, 2, FALSE) * B2 looks up the unit price for the product in A2, then multiplies it by the quantity in B2 to produce the line total. This approach eliminates hardcoded prices in your formulas and ensures that updating the PriceTable automatically refreshes every dependent calculation across your workbook without requiring any manual formula edits.

When you combine VLOOKUP with multiplication for financial calculations, you need to handle the #N/A error that appears when a lookup value is not found in your table. Wrapping the VLOOKUP in IFERROR — =IFERROR(VLOOKUP(A2, PriceTable, 2, FALSE) * B2, 0) — returns zero instead of an error for unrecognized product codes, keeping your totals clean and your workbook functional even when the source data contains new or unrecognized entries that haven't yet been added to your reference table.

Excellence Playa Mujeres - Microsoft Excel certification study resource

Asterisk Operator vs PRODUCT Function: Which Should You Use?

Pros
  • +Asterisk (*) is immediately intuitive for anyone familiar with basic math notation
  • +PRODUCT function automatically ignores blank cells, preventing zero-contamination errors
  • +SUMPRODUCT handles weighted multiplication and conditional sums in a single formula
  • +Absolute references ($B$1) make constant multipliers easy to update across entire columns
  • +Dynamic array multiplication (Excel 365) spills results automatically without copy-paste
  • +Paste Special Multiply transforms existing data without requiring formula columns
Cons
  • Asterisk chains break silently when any cell in the chain is blank, returning zero
  • Long asterisk chains like =A1*A2*A3*A4*A5*A6 are difficult to read and maintain
  • PRODUCT function is less obvious to non-expert Excel users reviewing your work
  • MMULT requires both arrays to have compatible dimensions or it returns a #VALUE error
  • Dynamic array spill formulas can overwrite adjacent data if the spill range is not clear
  • Mixing absolute and relative references incorrectly is a common source of formula bugs

FREE Excel Functions Questions and Answers

Practice PRODUCT, SUMPRODUCT, MMULT, and other essential Excel function challenges

FREE Excel MCQ Questions and Answers

Multiple choice questions covering Excel formulas, multiplication methods, and data operations

Excel Multiplication Mastery Checklist

  • Use =A1*B1 asterisk syntax for simple two-cell multiplication operations.
  • Switch to =PRODUCT(A1:A10) whenever multiplying more than three values in a range.
  • Lock multiplier constants with absolute references ($B$1) before copying formulas down a column.
  • Use =SUMPRODUCT(prices, quantities) to calculate total revenue without helper columns.
  • Wrap multiplication formulas in IFERROR to handle missing lookup values gracefully.
  • Apply Paste Special > Multiply to transform existing data values without adding formula columns.
  • Use ROUND inside multiplication formulas when displayed precision must match calculated precision.
  • Test your multiplication formulas with edge cases: blank cells, zero values, and negative numbers.
  • Combine IF with PRODUCT for conditional multiplication that only runs on qualifying rows.
  • Document any non-obvious multiplier constants with a cell comment or a labeled reference cell.

Use Paste Special Multiply for Instant Bulk Transformations

To multiply an entire column of existing values by a constant without adding a helper column, type your multiplier in any empty cell, copy it, select your data range, press Ctrl+Alt+V, choose Multiply, and click OK. Excel overwrites every cell with its multiplied value in under two seconds — ideal for currency conversions, unit changes, and percentage adjustments applied to hundreds of rows at once.

Advanced multiplication in Excel often involves combining the PRODUCT or asterisk operator with lookup functions, conditional tests, and database-style filtering. One of the most powerful combinations is using SUMPRODUCT with multiple condition arrays. For example, =SUMPRODUCT((region="West")*(product="Widget")*(sales)) multiplies three arrays together — a boolean array for region, a boolean array for product, and the numeric sales array — and sums the result. This effectively produces a conditional sum filtered by two criteria simultaneously, without requiring SUMIFS or any helper columns, and it works identically in all Excel versions that support SUMPRODUCT.

Another advanced technique involves using multiplication inside array formulas to create dynamic weighting systems. In performance scoring models, for instance, each metric might carry a different weight: accuracy might count for 40%, speed for 35%, and quality for 25%. You can encode these weights in a separate row and then use =SUMPRODUCT(scores_range, weights_range) to compute the final weighted score for each employee or product automatically. Updating the weights row instantly recalculates every score in the table, giving analysts a single control panel for adjusting the scoring model without touching the underlying data or individual formulas.

Excel's structured table references (available when your data is formatted as an official Excel Table via Ctrl+T) make multiplication formulas significantly more readable and self-documenting. Instead of =[@Price]*[@Quantity], the formula reads exactly like natural language, and it automatically expands when new rows are added to the table without requiring any formula copying. Structured references also prevent the common error of accidentally referencing the wrong column after inserting or deleting columns, because structured references follow the column by name rather than by position, making your multiplication formulas far more robust against structural changes in the workbook.

Building a multiplication table in Excel — a grid where row headers and column headers represent different values and each cell displays their product — is a classic exercise that demonstrates the power of mixed absolute and relative references.

If your row values start in A2:A11 and column values start in B1:K1, the formula =A2*B$1 in cell B2 uses a relative row reference for A2 (so it shifts down as you copy down) and an absolute row reference for B$1 (so it always picks the header row). Copying this single formula across and down the entire grid fills the multiplication table perfectly, showcasing exactly how Excel's reference system enables one formula to serve hundreds of cells.

Multiplication is also central to how to create a drop down list in Excel validation workflows. A common pattern combines a dropdown list for selecting a product or service category with a VLOOKUP that retrieves the unit price, and then multiplies that price by a quantity input to show a live total. Building this kind of interactive calculator requires no macros or VBA — just data validation dropdowns, VLOOKUP, and simple multiplication formulas. These self-calculating forms are widely used in quote generators, order forms, and cost estimators built entirely within Excel without any programming knowledge required.

The POWER function is a close relative of multiplication that is worth mentioning in any comprehensive guide. While POWER(base, exponent) calculates exponentiation (repeated multiplication), it is particularly useful for compound growth calculations. For example, =POWER(1.05, 10) computes 1.05 raised to the 10th power, representing the growth factor for something compounding at 5% annually for 10 years. You can combine POWER with multiplication to build complete compound interest formulas: =principal * POWER(1 + rate, periods). This makes POWER an essential complement to basic multiplication for anyone working with time-value-of-money calculations, loan modeling, or investment projections inside Excel.

Excel's Name Manager adds another layer of clarity to complex multiplication formulas. By assigning meaningful names to frequently used constants or ranges — for example, naming cell B1 as TaxRate — your formulas transform from cryptic sequences of cell addresses into readable business logic. A formula like =SalesAmount * TaxRate communicates its purpose instantly to anyone reviewing the workbook, while =A2*$B$1 requires mental decoding to understand. Named ranges also survive column insertions and deletions without breaking, because they reference the original cell regardless of its new column letter, making them especially valuable in multiplication formulas embedded in large, evolving workbooks.

Excel Spreadsheet - Microsoft Excel certification study resource

Common multiplication mistakes in Excel are worth cataloging in detail because many of them are non-obvious and can persist undetected for long periods before causing visible problems. The most frequent error is forgetting to use absolute references when copying a formula that should always reference a fixed cell.

For example, if your tax rate lives in B1 and you write =A2*B1 and copy the formula down, row 3 will compute =A3*B2, row 4 will compute =A4*B3, and so on — each row multiplying against a completely different cell than intended. The fix is simple: write =A2*$B$1 from the start, locking the row and column of the constant reference.

A second common error involves circular references in multiplication formulas. A circular reference occurs when a formula refers back to its own cell, directly or indirectly. For example, if cell C2 contains =C2*1.1, Excel cannot resolve the calculation because the formula depends on its own result.

Circular references in multiplication formulas are usually accidental — often caused by copying a formula one row too many or by incorrectly referencing the output column as part of the input range. Excel will warn you about circular references with an error message, but it's worth checking for them explicitly using the Formulas > Error Checking > Circular References menu whenever your multiplication results look unexpectedly large or small.

Number formatting is another area where multiplication can produce surprising results. If a cell is formatted as Text rather than General or Number, Excel will store your formula as a literal string rather than calculating it. You'll see the formula text displayed in the cell instead of a number.

The fix is to select the affected cells, change the format to General (Home > Number Format dropdown), and then re-enter the formulas. This formatting issue is especially common when importing data from external systems or CSV files, where Excel may incorrectly classify numeric columns as text, causing all downstream multiplication formulas to display as literal text strings instead of computed values.

Mixed data types within a multiplication range can also cause problems. If your range includes cells with units appended as text (like "10 units" instead of just 10), Excel cannot multiply those values and will return a #VALUE error.

The solution is to use the VALUE function to strip the numeric portion from text strings before multiplying — for example, =VALUE(LEFT(A2, FIND(" ", A2)-1)) extracts the numeric prefix from a string like "10 units" so it can participate in arithmetic operations. Building data validation rules that enforce pure numeric input in calculation columns is a better long-term solution that prevents this class of error from occurring in the first place.

Precision errors in floating-point multiplication are another subtle issue that affects Excel like all software using IEEE 754 arithmetic. Multiplying certain decimal values produces results with tiny fractional components that are invisible at normal display precision but affect comparisons and further calculations. For example, 0.1 * 3 in Excel may internally produce 0.30000000000000004 rather than exactly 0.3. Using ROUND(0.1*3, 10) or simply ROUND to two decimal places in financial contexts eliminates these artifacts. The ROUND function should be a standard wrapper for any multiplication formula used in financial reporting where exact decimal precision is required by auditors or accounting standards.

Finally, understanding how Excel handles multiplication with logical (TRUE/FALSE) values helps you write more compact formulas. In arithmetic context, Excel treats TRUE as 1 and FALSE as 0. This means you can multiply a numeric value by a logical test to conditionally zero it out: =A2 * (B2="Active") returns A2's value when B2 is Active, and returns zero otherwise — without needing an IF statement.

This pattern is used extensively inside SUMPRODUCT formulas to implement conditional filtering, and it is also useful anywhere you want to apply a binary on/off gate to a series of values. Recognizing this behavior helps you read and write more advanced Excel multiplication formulas with greater confidence and precision.

Building strong practical habits around Excel multiplication will accelerate your proficiency far more than memorizing syntax alone. One of the best habits is to always test a new multiplication formula on a small, known dataset before applying it to your full workbook.

If you know that multiplying 5 by 6 should give 30, set up a one-row test case with those values and verify your formula produces the correct result before copying it to hundreds of rows. This simple verification step catches reference errors, missing parentheses, and logic mistakes when they are trivial to fix, rather than discovering them after they have propagated through an entire worksheet.

Another practical habit is to separate your input cells, multiplier constants, and output formulas into clearly labeled sections of your workbook. Place all your rate tables, multipliers, and constants in a dedicated sheet or a clearly marked section at the top of the worksheet. Store your raw data in a separate area.

Keep your calculation formulas in a third area that only references the first two. This separation of concerns makes your workbook easier to audit, update, and share with colleagues who may not have built it themselves. It also makes it obvious at a glance where to change a value versus where formulas are computed.

Learning keyboard shortcuts for multiplication-related tasks significantly speeds up Excel work. Ctrl+D fills a formula down from the cell above — useful for copying a multiplication formula down a column. Ctrl+R fills a formula to the right — useful for copying across columns in a multiplication table.

F4 toggles absolute and relative reference types as you build a formula, cycling through $A$1, A$1, $A1, and A1 with each press. These shortcuts reduce the time spent on repetitive formula entry from minutes to seconds, especially when building large multiplication tables or applying a formula to hundreds of rows in a production workbook.

Documenting your multiplication logic is a professional practice that is often skipped by time-pressured analysts but pays dividends whenever the workbook is revisited months later. Use Excel cell comments (right-click > Insert Comment) to explain non-obvious multiplier choices — for instance, why a particular conversion factor is 0.0283168 (cubic feet to cubic meters) or why a markup percentage is 1.35 rather than 1.30.

For larger workbooks, a dedicated documentation sheet that lists all key constants, their sources, and their purposes creates a reference that makes auditing and updating the workbook dramatically faster for anyone — including your future self — who inherits it.

When sharing Excel workbooks that contain multiplication formulas, consider protecting the formula cells to prevent accidental edits. Excel's cell protection feature (Format Cells > Protection tab > Locked) combined with sheet protection (Review > Protect Sheet) allows you to lock all formula cells while leaving input cells editable. This creates a professional, tamper-resistant calculator where users can enter their data but cannot accidentally overwrite the multiplication logic. For important financial models and pricing tools, this level of protection is standard practice in corporate environments where workbook integrity must be maintained across multiple users and editing sessions.

Regularly auditing your multiplication formulas using Excel's built-in tools helps catch drift and errors over time. The Formula Auditing toolbar (Formulas tab > Formula Auditing group) includes Trace Precedents (shows which cells feed into a formula) and Trace Dependents (shows which formulas use a given cell). Running these traces on your multiplication formulas confirms that they are referencing the correct source cells and helps identify any formulas that may have lost their references due to row deletions or structural changes.

The Watch Window is another useful tool that lets you monitor critical formula outputs in a floating panel while you work elsewhere in the workbook, giving you real-time visibility into whether your multiplication results remain correct as you make edits.

Ultimately, proficiency in Excel multiplication is a compounding skill — each technique you master unlocks access to more powerful combinations. Starting with the asterisk operator builds your intuition for how Excel evaluates expressions. Adding absolute references lets you scale formulas across entire columns. Introducing PRODUCT and SUMPRODUCT opens up range and array multiplication.

Combining those functions with VLOOKUP, conditional logic, and named ranges produces the kind of sophisticated, self-maintaining workbooks that distinguish advanced Excel users from beginners. Every Excel professional who builds reliable financial models, accurate reports, and reusable calculators has invested time in understanding these multiplication fundamentals at a deep level.

FREE Excel Questions and Answers

Full certification-style Excel practice test covering formulas, functions, and data operations

FREE Excel Trivia Questions and Answers

Fun Excel trivia covering multiplication shortcuts, function history, and spreadsheet facts

Excel Questions and Answers

About the Author

Katherine LeeMBA, CPA, PHR, PMP

Business Consultant & Professional Certification Advisor

Wharton School, University of Pennsylvania

Katherine Lee earned her MBA from the Wharton School at the University of Pennsylvania and holds CPA, PHR, and PMP certifications. With a background spanning corporate finance, human resources, and project management, she has coached professionals preparing for CPA, CMA, PHR/SPHR, PMP, and financial services licensing exams.