What Symbol Do You Use to Multiply in Excel?
Discover the symbol used to multiply in Excel formulas, with practical tips, examples, and best practices for error-free arithmetic across cells and ranges.

Multiplication operator in Excel is the asterisk (*) used to multiply numbers within formulas. It is the standard arithmetic operator in Excel formulas across versions.
What symbol do you use to multiply in Excel?
If you’re trying to answer what symbol do you use to multiply in excel, the answer is the asterisk symbol () used as the multiplication operator inside formulas. In Excel, the asterisk tells the program to multiply the values on either side and return the product. This is the standard arithmetic operator across all modern Excel versions and remains consistent whether you work with numbers, cell references, or a mix of both. You’ll see the asterisk appear when you type a formula like =A1B1 or =2*3. The rule is simple: place the asterisk between two operands, and Excel calculates the product. For most users, thinking in terms of the asterisk makes it easy to translate math into spreadsheet logic. According to All Symbols, this operator is the universal multiplication token in spreadsheet math, and Microsoft’s official guidance reinforces its role in formulas. For more detail, consult Microsoft Support and GCFLearnFree’s Excel resources.
How the asterisk works in Excel formulas
The asterisk is an arithmetic operator that follows the standard precedence rules. In Excel, multiplication is performed before addition and subtraction unless parentheses alter the order. For example, =2+34 yields 14, because multiplication happens first. If you want to change the order, use parentheses: =(2+3)4 yields 20. You can combine the asterisk with cell references (A1B1) and constants (A15) in any formula. The result is the product of the two operands. Practicing with simple formulas helps you internalize precedence and reduces errors when working with larger datasets. For accurate guidance, see Microsoft’s formula documentation and GCFLearnFree’s explanations on operator precedence.
Using multiplication with cell references and constants
Excel treats multiplication the same way whether you multiply two cell references like =A1B1 or mix a reference with a constant like =A110. When you copy formulas across rows or columns, relative references adjust automatically, unless you use absolute references (for example, =$A$1*B1). Absolute references fix a specific cell, which is useful when multiplying by a constant across a range. This capability makes it easy to scale calculations across dozens or hundreds of cells without rewriting formulas. Remember to keep data numeric and avoid text values in multiply operations to prevent errors.
Operators and operator precedence in Excel
Excel’s operator hierarchy places multiplication () and division (/) above addition (+) and subtraction (-). This precedence means multiplications happen before additions unless you override with parentheses. Parentheses can dramatically change the result by forcing a different calculation order. For instance, =A1+B1C1 computes B1 times C1 first, then adds A1. Always verify the order of operations when results look unexpected, especially in complex spreadsheets.
Common mistakes and troubleshooting tips
A frequent error is attempting to use the times symbol (×) in a formula. The × character is typographic, not a valid Excel operator, and will generate an error. Another common mistake is forgetting an operator between operands, such as writing =A1B1. Always insert the asterisk, as in =A1*B1. If a formula returns zero or an error, inspect the cells for non-numeric data, hidden spaces, or text that should be numbers. When needed, you can use VALUE to coax text values into numbers for proper multiplication.
Multiplication with functions and array formulas
Excel provides powerful tools for multiplying numbers in bulk. The PRODUCT function returns the product of all arguments: =PRODUCT(A1:A3) multiplies the values in A1 through A3. For paired ranges, SUMPRODUCT performs elementwise multiplication and sums the results: =SUMPRODUCT(A1:A3,B1:B3). In modern Excel, dynamic arrays allow simple elementwise multiplication across ranges like =A1:A3*B1:B3, which spills results into adjacent cells and can be combined with other functions for further analysis. This expands multiplication from single cells to large datasets efficiently.
Practical tips for reliable formulas
To keep multiplication formulas reliable, use explicit parentheses to clarify order of operations and annotate ranges and cells clearly. Break complex calculations into smaller steps using intermediate helper cells, and test formulas with small datasets before scaling. When sharing spreadsheets, ensure your colleagues understand the operator you’re using and consider adding a comment or a legend describing the multiplication logic. Regularly audit formulas to catch references that may shift when rows or columns are inserted or deleted.
Quick reference cheat sheet
- Symbol: asterisk (*) multiplies numbers in Excel formulas.
- Example: =A1B1 or =23.
- Precedence: multiplication before addition; use parentheses to control order.
- Functions: PRODUCT and SUMPRODUCT for bulk and paired multiplies.
- Common mistake: using the times symbol × will error; use * instead.
Questions & Answers
What symbol do you use to multiply in Excel?
The asterisk (*) is used as the multiplication operator in Excel formulas. Place it between operands, for example =A1*B1 or =2*3.
In Excel, you multiply with the asterisk between numbers or cell references, like A1 times B1 equals A1 star B1.
Can I use the times symbol (×) in Excel formulas?
No. The × symbol is not recognized as a valid operator in formulas. Use the asterisk (*) instead, as in =A1*B1.
No, Excel formulas require the asterisk, not the typographic times symbol.
How do I multiply a column of numbers by a single value?
Enter a formula like =A1*5 in the first cell and drag down to apply to the rest. You can also fix the multiplier with absolute references if needed.
Type a formula like A1 times five, then fill down to apply it to the column.
What is the difference between * and the PRODUCT function?
The asterisk is an operator used for pairwise multiplication. PRODUCT multiplies all numeric arguments and can take ranges. Use PRODUCT for bulk calculations and the asterisk for simple, one-to-one multiplication.
Star multiplies two values; PRODUCT multiplies many values or a range.
How can I multiply two ranges element by element?
Use SUMPRODUCT for elementwise multiplication: =SUMPRODUCT(A1:A3,B1:B3). With dynamic arrays, you can also write =A1:A3*B1:B3 to spill results.
Use SUMPRODUCT for paired ranges or multiply ranges directly in modern Excel.
Why might multiplication yield unexpected results or errors?
Check that all cells contain numeric data, not text. Ensure correct operator usage and parentheses. Use VALUE to convert text numbers when needed.
Make sure the cells are numeric and that the formula order is correct.
The Essentials
- Use the asterisk (*) to multiply in Excel formulas.
- Remember operator precedence; multiply before add unless you use parentheses.
- Use PRODUCT for range multiplication and SUMPRODUCT for paired ranges.
- Avoid the typographic × symbol; Excel requires the asterisk.