×

Multiplication in Excel

Multiplication plays a vital role in Mathematics. Usually, the calculations are performed manually and automatically. Manual calculations take time and sometimes leads to error, and it is a challenging process for significant input. Automatic calculations performed on computers, laptops, calculators etc., help the work be done efficiently and quickly. Excel is widely used for calculations in sectors like banking, finance etc. The calculations are done quickly, where Excel provides default formulas for the respective work. For example, for multiplication purposes, Excel provides a PRODUCT function and a ‘*’ symbol for multiplying the values.

Let’s have a look what are the formulas and functions present in Excel for multiplication

How to perform Multiplication in Excel?

The formulas in Excel is always begins with ‘=’ sign.

Example 1: How to multiply the column of numbers by a constant given number?

Step 1: Enter the data in the cell from A1:A5

Step 2: Select a cell B1 and enter the desired constant number. Here the constant number is 5.

Step 3: Select cell C1 and enter the formula as = A1*$B$2. The result will be displayed in the cell C1.

Step 4:  Drag the formula down towards the cell C5. The result will be displayed in the cell from C1 and C5. When the formula is dragged down ,the absolute reference ($B$1) remain the same ,while the relative reference called A1 changes according to the formula like A2,A3,A4,A5 etc..

Multiplication in Excel

Example 2: How to multiply the data in the cells using different numbers?

Sometimes, the data in the cells are multiplied using different numbers.

Step 1: Enter the data in the respective column.

Step 2: Select the cell B1 and enter the formula as =A1*A2

Step 3: The result will be displayed which is the multiplication of the data present in A1 and A2.

Multiplication in Excel

Step 4: Select the cell B2 and enter the formula as = PRODUCT(A1:A5)

Here in this method the PRODUCT function is used to multiply the whole columns of data within itself.

Multiplication in Excel

The result will be displayed as 375000 which is the product of (5*10*15*20*25)

Example 3: In this method, the data are entered directly in the cell along with the formula.

Step 1: Select the cell and type the formula along with the data like, =5*5*7.

Step 2: The result will be displayed in the respective cell as shown below.

Multiplication in Excel

From the above method, the result is displayed as 200 in cell A1.

Example 4: How to perform the multiplication using cell name for a set of column?

In this method the values present in the set of columns is multiplied using its cell name.

Step 1: Enter the data in the respective column namely A1:A5.

Step 2: Select the cell B1 and enter the formula as =A1*A2*A3*A4*A5.

Step 3: The result will be displayed in the cell B1 as 120.

Multiplication in Excel

Example 5: How to multiply more than one column using PRODUCT function?

In this method let’s see how to multiply the data which is present in more than one column using Excel PRODUCT function.

Step 1: Enter the data in the respective column namely A1:A5, B1:B3, C1.

Step 2: Select a new cell where the result wants to display and type the formula as =PRODUCT (A1:A5, B1:B3, C1, 3)

The result will be displayed as 34462668240 which is the product of A1*A2*A3*A4*A5*B1*B2*B3*C1*3.Here ‘3’ is the choice of number to multiplied with the data.

Multiplication in Excel

Example 6: How to multiply two columns together?

To multiply the data present in two columns following steps to be followed.

Step 1: Enter the data in two columns respectively A1:A5 and B1:B5.

Step 2: Select the new cell namely C1 where the result wants to display and type the formula A1*B1.

Step 3: The result will be displayed in the respective cell. Finally click on the lower right corner of the cell C1 and drag towards downwards C5. The result will be displayed in the remaining cells.

Multiplication in Excel

Example 7: How to multiply the numbers in the column without using formulas?

Step 1: Enter the data in the column namely A1:A5 and copy the data by pressing Ctrl+ C.

Multiplication in Excel

Step 2: Right click and chose the option “Paste Special” where a dialog box will appear in that choose Paste “All” option and choose the operation as “Multiply”.

Multiplication in Excel

Step 3: Click OK. It will display the multiplication of data present in the column as a result.

Multiplication in Excel

As shown in the above image the result will be displayed as 1,4,9,16,25 which is the multiplication of (1*1, 2*2, 3*3, 4*4, 5*5)

Example 8: How to multiply rows in Excel?

To multiply rows in Excel, following steps are followed.

Step 1: Enter the rows of data in Excel from A1:E2

Step 2: Select the cell A3 and enter the formula as = A1*A2.

Step 3: The result will be displayed in the cell A3. Drag the formula from A3 to E3. The result will be displayed in the remaining cell .While multiplying the columns   the relative cell references in the formula change like A1, B1, C1, D1 and E1 based on rows and columns.

Multiplication in Excel

From the above spreadsheet, the values are displayed based on multiplying the rows A1:E2.

Example 9: How to multiply by Percentage in Excel?

To multiply the percentage data in Excel, steps to be followed are,

Step 1: Enter the data in the spreadsheet. Choose the desired percentage number and select a new cell to insert the formula.

Step 2: For example, here the data value is entered as 30 and the percentage value is 5%.

Step 3: Enter the formula as = 30*10%. The result will be display in the particular cell.  The percentage and data value can be changed according to the user’s choice of data.

Multiplication in Excel

From the above spreadsheet the result in the column B is calculated by multiplying the value in A1 with certain percentage.

Example 10:  How to multiply and sum the values in Excel?

Sometimes the calculation is based on multiplying two rows or columns and then adding the two resultant values. To implement this function SUMPRODUCT function is used. It is used to multiply and add the values.

For example, if the table contains the data of price of the product and quality of the product, the calculation is to multiply the price and quality of the product and sum the data. Automatic calculation is performed easily for this calculation. In Excel, the default function called SUMPRODUCT is used to calculate the values.

To use the SUMPRODUCT function steps to be followed are,

Step 1: Enter the data in the spreadsheet such as Name of the Product, quantity and cost.

Step 2: Select the cell where the result want to display and enter the formula as =SUMPRODUCT (B2:B5,C2:C5) which is the result of total sales.

Multiplication in Excel

 From the above spreadsheet, the sum value of quantity and cost is multiplied which displays the result as 73115.

Summary

From the above tutorial, the various method and functions for multiplying two data is briefly explained.


Related Topics

Excel SMALL() Function

The SMALL() function in excel returns the k-th smallest value in a data set. Syntax SMALL(Array, kth small number from the list) Parameter Array (required)- This parameter represents the list of numbers from which nth smallest...

1 minute read.

Histogram in Excel

What is Histogram in Excel? “ A histogram is a graphical tool familiar for summarizing discrete or continuous data, where the data are measured on an interval scale.”  Karl Pearson described this...

5 minutes read.

Excel INT() Function

Excel INT() Function The INT() function in excel is used to round a number down to the nearest integer. It removes decimal points from any number value & return rounded down number value in...

1 minute read.

Excel AND() Function

The AND() function in excel tests the multiple sets of conditions and returns TRUE if all supplied conditions met the criterion, FALSE otherwise. You need to have a minimum of 2 conditions...

2 minutes read.

How to Make Use of the F-Test in Excel

Intro to F-Test in Microsoft Excel F-Test is primarily considered to be the essential tool of statistical in Microsoft Excel that, in turn, is used to do the hypothesis test with...

7 minutes read.

Absolute Value in Excel

What is Absolute Value in Excel? Microsoft Excel worksheet is a combination of numeric values and alphabets. The numeric value is either a positive value or a negative value. Sometimes the...

5 minutes read.

Square Root Function in Excel

The concept of Mathematical calculations includes a large number of numbers and calculations are based on the numbers present in the data. Likewise, Square Root is a function used to...

3 minutes read.

Locate Maximum Values in Excel

Excel is a combination of numeric values and numbers. To retrieve the result, Excel provides various formulas and functions. Sometimes the user needs to find the largest value from the...

5 minutes read.

Spell Check in Excel

Spell Check in Excel Microsoft Excel facilities the complete features for examining the work with text. It provides the basic properties for the proper functioning of text, including the spell-check property. The...

5 minutes read.

Excel Ribbon Toolbar

Excel Ribbon/Toolbar How does a toolbar look like? The top section of an excel file is called a Ribbon or a toolbar. It has various commands which can be useful for us in our daily work....

6 minutes read.

Excel LARGE() Function

The LARGE() function in excel returns the k-th largest value in a data set. Syntax LARGE (Array, kth small number from the list) Parameter Array (required)- This parameter represents the list of numbers from which nth...

1 minute read.

What is a name box in Excel?

The name box in Microsoft Excel specifies a name for a single cell or a table. The name box is present in the top left corner, left to the formula...

4 minutes read.

Text to columns in Excel

Microsoft Excel is widely used in startups to large companies. The data are entered in required rows and columns, and sometimes the data entered in one cell needs to enter...

4 minutes read.

Decimals in Excel

Microsoft Excel is widely used for calculation purposes for various applications. The calculation consists of numbers which include whole numbers, decimals, integers etc. To perform quick calculations, the numbers should...

5 minutes read.

What do you understand by Combination Chart in Microsoft Excel?

In Microsoft Excel, an individual has the Combo Chart option available, which can be effectively clubbed into two charts types, which are Column Clusters Chart, Line Chart to get the...

7 minutes read.

Excel INDEX () Function

Excel INDEX () Function The INDEX() function in excel returns a value from a list of tables based on the intersection of a row and a column position. This function is used with the...

2 minutes read.

Reverse List in Excel

What is Reverse list in Excel? Microsoft Excel is widely used for calculation purposes like statistical and analytical for predicting and getting the result. Sometimes for calculation purposes, the user needs...

5 minutes read.

Excel MID() Function

The MID() function in excel is used to return a specific number of characters from a text string starting at the position you specify. One can change the start of the string, thus...

1 minute read.

Unique Values in Excel

The Unique function in Excel filters the list of unique values from the given data like range or array. The data presented is either number, text, date, time etc. This...

3 minutes read.

Paste Options in Excel

Excel spreadsheet is a combination of numeric values, alphabets which is used for calculation purposes. While performing the calculations, there is a need to repeat the data for further process....

6 minutes read.