The tutorial explains how to multiply in Excel by using the multiplication symbol and functions, how to create a formula for multiplying cells, ranges or entire columns, how to multiply and sum, and more.
While there is no universal multiplication formula in Excel, there exist a few different ways to multiply numbers and cells. The below examples will teach you how to write a formula best suited for your specific task.
Multiply in Excel by using multiplication operator
The easiest way to do multiplication in Excel is by using the multiply symbol (*). With this approach, you can quickly multiply numbers, cells, entire columns and rows.
How to multiply numbers in Excel
To make the simplest multiplication formula in Excel, type the equals sign (=) in a cell, then type the first number you want to multiply, followed by an asterisk, followed by the second number, and hit the Enter key to calculate the formula.
For example, to multiply 2 by 5, you type this expression in a cell (with no spaces): =2*5
As shown in the screenshot below, Excel allow performing different arithmetic operations within one formula. Just remember about the order of calculations (PEMDAS): parentheses, exponentiation, multiplication or division whichever comes first, addition or subtraction whichever comes first.
How to multiply cells in Excel
To multiply two cells in Excel, use a multiplication formula like in the above example, but supply cell references instead of numbers. For example, to multiply the value in cell A2 by the value in B2, type this expression:
=A2*B2
To multiply multiple cells, include more cell references in the formula, separated by the multiplication sign. For example:
=A2*B2*C2
How to multiply columns in Excel
To multiply two columns in Excel, write the multiplication formula for the topmost cell, for example:
=A2*B2
After you've put the formula in the first cell (C2 in this example), double-click the small green square in the lower-right corner of the cell to copy the formula down the column, up to the last cell with data:
Due to the use of relative cell references (without the $ sign), our Excel multiply formula will adjust properly for each row:
In my opinion, this is the best but not the only way to multiply one column by another. You can learn other approaches in this tutorial: How to multiply columns in Excel.
How to multiply rows in Excel
Multiplying rows in Excel is a less common task, but there is a simple solution for it too. To multiply two rows in Excel, just do the following:
- Insert a multiplication formula in the first (leftmost) cell.
In this example, we multiply values in row 1 by the values in row 2, beginning with column B, so our formula goes as follows:
=B1*B2
- Select the formula cell, and hover the mouse cursor over a small square at the lower right-hand corner until it changes to a thick black cross.
- Drag that black cross rightward over the cells where you want to copy the formula.
As with multiplying columns, the relative cell references in the formula change based on a relative position of rows and columns, multiplying a value in row 1 by a value in row 2 in each column:
Multiply function in Excel (PRODUCT)
If you need to multiply multiple cells or ranges, the fastest method would be using the PRODUCT function:
Where number1, number2, etc. are numbers, cells or ranges that you want to multiply.
For example, to multiply values in cells A2, B2 and C2, use this formula:
=PRODUCT(A2:C2)
To multiply the numbers in cells A2 through C2, and then multiply the result by 3, use this one:
=PRODUCT(A2:C2,3)
The screenshot below shows these multiplication formulas in Excel:
How to multiply by percentage in Excel
To multiply percentages in Excel, do a multiplication formula in this way: type the equals sign, followed by the number or cell, followed by the multiply sign (*), followed by percentage.
In other words, make a formula similar to these:
- To multiply a number by percentage:
=50*10%
- To multiply a cell by percentage:
=A1*10%
Instead of percentages, you can multiply by a corresponding decimal number. For example, knowing that 10 percent is 10 parts of a hundred (0.1), use the following expression to multiply 50 by 10%: =50*0.1
As shown in the screenshot below, all three expressions yield the same result:
How to multiply a column by a number in Excel
To multiply a column of numbers by the same number, proceed with these steps:
- Enter the number to multiply by in some cell, say in A2.
- Write a multiplication formula for the topmost cell in the column.
Assuming the numbers to be multiplied are in column C, beginning in row 2, you put the following formula in D2:
=C2*$A$2
It is important that you lock the column and row coordinates of the cell with the number to multiply by to prevent the reference from changing when you copy the formula to other cells. For this, type the $ symbol before the column letter and row number to make an absolute reference ($A$2). Or, click on the reference and press the F4 key to change it to absolute.
- Double-click the fill handle in the formula cell (D2) to copy the formula down the column. Done!
As you can see in the screenshot below, C2 (relative reference) changes to C3 when the formula is copied to row 3, while $A$2 (absolute reference) remains unchanged:
If the design of your worksheet does not allow an additional cell to accommodate the number, you can supply it directly in the formula, e.g.: =C2*3
You can also use the Paste Special > Multiply feature to multiply a column by a constant number and get the results as values rather than formulas. Please check out this example for the detailed instructions.
How to multiply and sum in Excel
In situations when you need to multiply two columns or rows of numbers, and then add up the results of individual calculations, use the SUMPRODUCT function to multiply cells and sum products.
Supposing you have prices in column B, quantity in column C, and you want to calculate the total value of sales. In your math class, you'd multiply each Price/Qty. pair individually and add up the sub-totals.
In Microsoft Excel, all these calculations can be done with a single formula:
=SUMPRODUCT(B2:B5,C2:C5)
If you wish, you can check the result with this calculation:
=(B2*C2)+(B3*C3)+(B4*C4)+(B5*C5)
And make sure the SUMPRODUCT formula multiplies and sums perfectly:
Multiplication in array formulas
In case you want to multiply two columns of numbers, and then perform further calculations with the results, do multiplication within an array formula.
In the above data set, another way to calculate the total value of sales is this:
=SUM(B2:B5*C2:C5)
This Excel Sum Multiply formula is equivalent to SUMPRODUCT and returns exactly the same result (please see the screenshot below).
Taking the example further, let's find an average of sales. For this, just use the AVERAGE function instead of SUM:
=AVERAGE(B2:B5*C2:C5)
To find the largest and smallest sale, use the MAX and MIN functions, respectively:
=MAX(B2:B5*C2:C5)
=MIN(B2:B5*C2:C5)
To complete an array formula properly, be sure to press the Ctrl + Shift + Enter combination instead of Enter stroke. As soon as you do this, Excel will enclose the formula in {curly braces}, indicating it's an array formula.
The results might look something similar to this:
That's how you multiply in Excel, it doesn't take a rocket scientist to figure it out :) To have a closer look at the formulas discussed in this tutorial, feel free to download our sample Excel Multiplication workbook.
How to quickly do any calculations in Excel
If you are a novice to Excel and are not comfortable with multiplication formulas yet, our Ultimate Suite will make things a lot easier for you. Among 70+ cute features, it provides the Calculation tool that can perform all basic mathematic operations, including multiplication, in a mouse click. Let me show you how.
Supposing you have a list of net prices and you want to know the corresponding VAT amount. No big deal if you know how to calculate percentages in Excel. If you don't, have the Ultimate Suite do the job for you:
- Copy the prices to the VAT column. You need to do this because you don't want to override the original values in the Price column.
- Select the copied prices (C2:C5 in the screenshot below).
- Go to the Ablebits tools tab > Calculate group, and do the following:
- Select the percentage symbol (%) in the Operation box.
- Type the desired number in the Value box.
- Click the Calculate button.
That's all there is to it! You will have the percentages calculated in a heartbeat:
In a similar manner, you can multiply and divide, add and subtract, calculate percentages, and more. All you have to do is select an appropriate operator, for example the multiply symbol (*):
To perform one of the recent calculations to another range or column, just click the Apply Recent button, and pick the operation:
The results of all calculations done with the Ultimate Suite are values, not formulas. So, you are free to move or copy them to another sheet or workbook without worrying about updating formula references. The calculated values will remain intact even if move or delete the original numbers.
If you are curious to learn more about this and many other time-saving tools included with the Ultimate Suite for Excel, you are welcome to download 15-day trial version.
I thank you for reading and hope to see you on our blog next week!
140 comments
A B C D E
1 SAKO Portier Cleaning %
2 Adam 21.8
3 Thomas 15.2
4 Jack 11.0
5 John 11.0
6 Smith 12.2
7 Jef 8.4
8 David 20.6
9 Total 3400 5500 7300 100
Hi
Could you please provide me with an excel formula to fill out the above Excel matrix by distributing the items in total row among the persons by using the percentage stated in the column. Many thanks for your kind cooperation
Hello!
Please check out the following article on our blog, it’ll be sure to help you with your task: How to calculate percentage in Excel
The formula in C1 might be something like this.
=B1*$C$9
Copy it down the column.
If there is only one value at the time of multiplication, then there will be a specific mark in the cell, How to do it in Excel?
=IF(L20=9,(M23*0.9+K14*0.15))
Didn't seem to post the formula correctly
I have 2 formulas, they work by them selves but when I try and add them together it will not work, What am I doing wrong.
=IF(L20=9,M23*0.9+K14*0.15)
Thanks
how to multiply B3?
19.46 * 8000 is giving me 155,652.91 but the real answer is 155,680. Why is excel giving me this number?
Hello!
I assume that 19.46 is the result of calculating the formula, and not entering this value manually. If you increase the number of decimal places in the number format, you will see that this is not 19.46 but 19.45661375
You can use the ROUND function in the formula so that the number on the screen does not differ from the real number.
Here is my example: My balance is $1045.00. My rate is 4.5%. My minimum payment is $45.00. I plan to add an additional monthly extra payment of $400.00. I can figure this out on Excel spreadsheet by using a running balance, monthly interest, and the monthly payment. I want to be able to calculate this on paper to get the future amount owed or total interest paid without calculator. Thank you in advance.
I need to multiply one cell by another, repeatedly where only one changes. So, I want C3 * D2, C4*D2, C5*D2, but when I put in the first formula and drag down the column, it gives me C3*D2, C4*D3, C5*D4 -- it changes the second number. I have tried putting a $ before the D value =PRODUCT(C3*$D2) but it does not help. I want the D2 to remain constant and each C to multiply by the D2 number.
Hello!
Here is the article that may be helpful to you: How to copy formula in Excel with or without changing references.
=C3*$D$2
I hope this will help.
Total $784,802.74
Contracting fee 15% + gst $117,720.41 -need this formula to also include the GST IE: =+B55*15% +(B57*5%) - wont let me do this in current column. Circular reference error if i do this? The amount should be $123,606.43
Estimated - New Budget Total $902,523.15 This total would then be: $908409.17
Hello,
I want to calculate:
(1+Q13*$N$2)+PRODUCT(1+Q13:Q14*$N$2)+PRODUCT(1+Q13:Q15*$N$2)+... +PRODUCT(1+Q13:Q33*$N$2)
is there any shorter way I dont need to write them all?
Hi,
Unfortunately, without seeing your data it is difficult to give you any advice. Could you please describe it in more detail? What result do you want to get? Please provide me with an example of the source data and the expected result.
multiplication function for these cells: N11, N12, N13, E14, and E15
Thank you!
My problem is simple, in A column is a, b, c, d, e, f, g repeate randomly up to millions, corresponding value 3, 5, 4, 6, 2, 7, 1, 8 randomly, multiply with colum B, Each cell value is different, more than two lac.... please solve my problem with exact formula wth helper.....
Hello!
Your explanation is not very detailed, but I think the article will be useful to you: Excel random selection.
I hope my advice will help you solve your task.
Hello.
I am sure this is a simple problem. IF statement to multiply part of the value by a %, but there are parameters based on value reaching benchmark. Please see a simple example below.
Cell value: $100,000
If cell value is between $0 to 10,000, 8%.
If cell value is between $10,001 to 15,000, 10%.
If cell value is $15,0001 to 20,000, 15%.
If cell value is $20,001 to 25,000, 20%
como multiplicar si el precio trae decimales pa que despues no salvation value
I NEED ONE ROW MULTIPLY BY SECOND ROW AND FORMULA COPY IN OTHER ROW WITHOUT CHANGE
Hello!
I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Please specify what you were trying to find, what formula you used and what problem or error occurred. Give an example of the source data and the expected result.
It’ll help me understand it better and find a solution for you
My question ( 0.89+0.88+0.87+0.87+0.86+0.86+0.85+0.85+0.84)*7.06 +(0.83+0.83+0.82+0.82+0.81+0.81+0.80+0.80+0.79+0.78+0.78+0.77+0.77+0.76+0.76+0.75)7.57 /(0.89+0.88+0.87+0.87+0.86+0.86+0.85+0.85+0.84+0.83+0.83+0.82+0.82+0.81+0.81+0.80+0.80+0.79+0.78+0.78+0.77+0.77+0.76+0.76+0.75) My ans. 59.53 but actual ans. 7.3765
My Formula = =SUM(F11:N11)*7.06+SUM(O11:AD11)*7.57/SUM(F11:AD11) Please suggest right ans.
Hello!
Your formula:
=(0.89+0.88+0.87+0.87+0.86+0.86+0.85+0.85+0.84)*7.06+(0.83+0.83+0.82+0.82+0.81+0.81+0.8+0.8+0.79+0.78+0.78+0.77+0.77+0.76+0.76+0.75)*7.57/(0.89+0.88+0.87+0.87+0.86+0.86+0.85+0.85+0.84+0.83+0.83+0.82+0.82+0.81+0.81+0.8+0.8+0.79+0.78+0.78+0.77+0.77+0.76+0.76+0.75)
=SUM(F11:N11)*7.06+SUM(O11:AD11)*7.57/SUM(F11:AD11)
Answer: 59.549
Formula:
=((0.89+0.88+0.87+0.87+0.86+0.86+0.85+0.85+0.84)*7.06+(0.83+0.83+0.82+0.82+0.81+0.81+0.8+0.8+0.79+0.78+0.78+0.77+0.77+0.76+0.76+0.75)*7.57)/(0.89+0.88+0.87+0.87+0.86+0.86+0.85+0.85+0.84+0.83+0.83+0.82+0.82+0.81+0.81+0.8+0.8+0.79+0.78+0.78+0.77+0.77+0.76+0.76+0.75)
=(SUM(F11:N11)*7.06+SUM(O11:AD11)*7.57)/SUM(F11:AD11)
Answer: 7.376
You can choose yourself.
Hi, I need help in Excel. I have a column of 22 services rendered, then the cost of the service in the next column, then the # of times the service is rendered in the next column. The rest of the columns across the spreadsheet I have columns for Sunday through Saturday for 1 week. For each service can be performed zero to 8 times a day. I am trying to create a formula to multiple the cost of the service times the number of times it is performed a day.For example cost of service, which is $3.00 is in cell D5, the number of times service is done, which is 3 times, is in cell E5 and in cell F5 I put the formula =Product(D5*E5) which gives me the total cost of the services rendered for that service for that day which is Sunday in my spreadsheet and the total is $9.00. If this same service was done on Monday, but for 6 times,I can not figure out how to set the formula so it does not change the correct amount for Sunday. I need the spreadsheet to show the correct amounts for each day of the week as the number of times the service is done changes or may change each day. If I use the formula =Product (D5*E5) in the cell for each day it gives me the same amount for everyday even when each day the number of times the service is rendered is a different number. How do I adjust the formula to show the correct amount for each day for the services rendered that day?2020
MONTH WEEK
#: Homecare Services Cost of service # Service done SUN MON TUES WED
1 Check on client $3.00 3 $9.00 $9.00
2 Assist/escort to Activities or meals $7.89
The services done daily change in number daily; in the above example Sunday it was done 3 times; but Monday it was done 6 times; how do I write the formula to change with the number of services done each day to get the right amount daily? Monday should not be $9.00, but $18.00 since it was done 6 times. Thank you for your help.
Hello Karmi!
If I understand your task correctly, the following formula should work for you:
=SUMPRODUCT(D2:D5,E2:E5,--(F2:F5="sun"))
I hope it’ll be helpful.
Hello,
I am trying to use a formula to track supplies. In this instance I would want to track full cases of an item as well as individual items.
I have my data set up where C:C would be cases and be required to be multiplied by 8
D:D would be individual boxes. What I would like to do is have an equation that would essentially mirror this 8*(C:C)+(D:D) but I haven't been able to figure out the proper way to organize it that excel likes. I've tried SUM, PRODUCT, and SUMPRODUCT to no avail.
Please help.
Hello Caitlin!
I’m sorry but your task is not entirely clear to me.
For me to be able to help you better, please describe your task in more detail. Please let me know in more detail what you were trying to find, what formula you used and what problem or error occurred. It’ll help me understand it better and find a solution for you. Thank you.
Hi,
I'm trying to create an excel spreadsheet to help me take inventory at packing shed for onions. The onions are palletized (42/pallets). I was to be able to type in the number of pallets and it automatically multiple by 42 to calculate the total number of bags.
Hello John!
I hope you have studied the recommendations in the above tutorial. Please let me know in more detail what you were trying to find, what formula you used and what problem or error occurred. In that case I will try to help you.