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

Quick Answer: Multiplying in Excel is typically done using the asterisk (*) symbol for multiplication, often within a formula. You can multiply two numbers, a cell by a number, or two cells together by entering a formula that starts with an equals sign (=). For instance, to multiply cell A1 by cell B1, you would type `=A1*B1` into the desired cell.

Key Facts

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], ...)

Examples of the PRODUCT Function

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

Troubleshooting

If your multiplication formula isn't working as expected, check for the following:

By mastering these methods, you can efficiently perform multiplication tasks in Excel, enhancing your data analysis and productivity.

Sources

  1. Multiply numbers in Excel - Microsoft Supportfair-use
  2. Multiplication sign - WikipediaCC-BY-SA-4.0

Missing an answer?

Suggest a question and we'll generate an answer for it.