How to multiply in excel
Content on WhatAnswers is provided "as is" for informational purposes. While we strive for accuracy, we make no guarantees. Content is AI-assisted and should not be used as professional advice.
Last updated: April 4, 2026
Key Facts
- The asterisk (*) is the multiplication operator in Excel.
- Formulas in Excel must start with an equals sign (=).
- You can multiply numbers, cell references, or a combination.
- The PRODUCT function can multiply multiple numbers or cells.
- Relative cell references automatically adjust when copied.
Overview
Microsoft Excel is a powerful spreadsheet program that allows users to perform a wide range of calculations, including multiplication. Whether you're managing personal finances, tracking inventory, or analyzing business data, knowing how to multiply effectively in Excel is a fundamental skill. This guide will walk you through the primary methods of multiplication, from simple calculations to more complex scenarios.
Basic Multiplication Using the Asterisk (*) Operator
The most straightforward way to multiply in Excel is by using the asterisk symbol (*) as the multiplication operator. This symbol is used in conjunction with cell references or direct numerical values within a formula.
Multiplying Two Numbers Directly
To multiply two specific numbers, you simply enter an equals sign (=) followed by the numbers separated by the asterisk. For example, to calculate 5 times 10, you would type the following into any cell and press Enter:
=5*10
The cell will then display the result, which is 50.
Multiplying a Cell by a Number
Often, you'll want to multiply the value in a particular cell by a constant number. Let's say you have the number 25 in cell A1, and you want to multiply it by 3. In another cell (e.g., B1), you would enter:
=A1*3
If you then change the value in cell A1, the result in B1 will automatically update.
Multiplying Two Cells
This is a very common use case. If you have values in cell A1 and cell B1, and you want to multiply them, you would enter the following formula in a third cell (e.g., C1):
=A1*B1
Pressing Enter will show the product of the values contained in A1 and B1.
Multiplying Multiple Cells or Numbers
You can extend the asterisk method to multiply more than two values. For instance, to multiply the values in cells A1, B1, and C1, you would use:
=A1*B1*C1
Similarly, you can mix cell references and numbers:
=A1*5*B1
Using the PRODUCT Function
Excel also provides a built-in function called PRODUCT, which is specifically designed for multiplication. This function is particularly useful when you need to multiply a large range of cells or many individual cells/numbers without typing numerous asterisks.
Syntax of the PRODUCT Function
The syntax is as follows:
=PRODUCT(number1, [number2], ...)
number1: Required. The first item to multiply. Can be a number, cell reference, or a range.[number2], ...: Optional. Additional items to multiply, up to 255 arguments.
Examples of the PRODUCT Function
- To multiply the values in cells A1 through A5:
=PRODUCT(A1:A5) - To multiply individual cells A1, B2, and C3:
=PRODUCT(A1, B2, C3) - To multiply a range and a specific number:
=PRODUCT(A1:A5, 10)
The PRODUCT function offers a cleaner way to handle multiplications involving multiple arguments compared to chaining asterisks.
Copying Multiplication Formulas
One of Excel's most powerful features is its ability to copy formulas. When you copy a formula containing relative cell references (like =A1*B1) to another cell, Excel automatically adjusts the cell references based on the new location. This is known as relative referencing.
Using the Fill Handle
After entering your multiplication formula, you can use the fill handle (the small square at the bottom-right corner of the selected cell) to drag the formula down or across. For example, if you have values in column A and column B, and you enter =A1*B1 in C1, then drag the fill handle down from C1 to C10, Excel will automatically create formulas like =A2*B2 in C2, =A3*B3 in C3, and so on.
Absolute vs. Relative References
Sometimes, you might want to multiply by a fixed value or cell that doesn't change when you copy the formula. This is where absolute references come in handy. You can make a cell reference absolute by adding a dollar sign ($) before the column letter and/or row number (e.g., $A$1 for an absolute reference to cell A1, $A1 for an absolute column reference, and A$1 for an absolute row reference). For example, if you want to multiply all values in column A by the value in cell B1, you would enter =A1*$B$1 in C1 and then copy it down. The reference to B1 will remain fixed.
Common Multiplication Scenarios
- Calculating Total Cost: Multiply quantity (e.g., in A1) by price per unit (e.g., in B1) to get the total cost (e.g., in C1 with
=A1*B1). - Applying Discounts/Markups: Multiply a price by a discount percentage (e.g.,
=A1*0.9for a 10% discount) or a markup percentage. - Calculating Sales Tax: Multiply a subtotal by the sales tax rate.
Troubleshooting
If your multiplication formula isn't working as expected, check for the following:
- Ensure the formula starts with an equals sign (=).
- Verify that you are using the asterisk (*) for multiplication, not 'x'.
- Check that the cell references are correct and point to the intended cells.
- Make sure the cells you are multiplying contain numbers or can be interpreted as numbers. Text values will result in an error (e.g., #VALUE!).
By mastering these methods, you can efficiently perform multiplication tasks in Excel, enhancing your data analysis and productivity.
More How To in Daily Life
Also in Daily Life
More "How To" Questions
Trending on WhatAnswers
Browse by Topic
Browse by Question Type
Sources
- Multiply numbers in Excel - Microsoft Supportfair-use
- Multiplication sign - WikipediaCC-BY-SA-4.0
Missing an answer?
Suggest a question and we'll generate an answer for it.