SUMPRODUCT function performs multiplication of numbers within arrays and then sum the values
=SUMPRODUCT(array1,[array2],...
array1 argument is used to give range for which you want to multiply and then sum
[array2] is optional argument and is used to give another range for which you want to multiply and then sum
… means, we can add multiple range by separating them with comma ( , )
SUMPRODUCT Function will first multiply the values within arrays i.e. 1st value of 1st array, multiply with 1st value of 2nd array (2*1=2)
+ 2nd value of 1st array, multiply with 2nd value of 2nd array (6*5=30)
+ 3rd value of 1st array, multiply with 3rd value of 2nd array (3*4=12)
and then, Sum all the values i.e. 2+30+12=44
i.e. =A2*B2 + A3*B3 + A4*B4 = 44
– If function has only one array (i.e. range) then it will Sum all the values
– Multiple ranges can be applied in function by separating them with comma ( , )
– Text/ Blank values will be considered as zero (i.e. 0)
– If No values in range is provided in array argument, then output will return as 0 (zero)
Hope you learnt this Function,
Don’t forget to leave your valuable comments!
If you liked this article and want to learn more similar tricks, please Subscribe us or follow us on Social Media by clicking below buttons:
Lock Cells to avoid editing, Hide Formulas Sometimes you create amazing projects, dashboards however people can make mistakes and edit the calculations, formats what you have made. Still you can protect the sheets, workbooks and…
In layman language, this chart divides the data into multiple range groups with same interval i.e. 1-5, 5-10… and then plot the data into these groups to find the distribution among these group. So that you may understand, what are the major areas which has large impact or your major data fall. This helps the user to understand the nature of your data
Calculations With Date In Excel Dates function also be used to subtract the Year, Month and Days from the existing dates. Sometimes we need to subtract specific period from the date. In case you are…
In an “IF function” there will be two output i.e. TRUE or FALSE since either the statement will be “TRUE” or “FALSE”. If the statement is matching or correct, then output will be “TRUE” or if the statement is not matching or not correct then the output will be “FALSE
Today, I’ll show you how to add bullet points in Excel with simple steps and clear images, so you can easily highlight key points in your Excel reports for better clarity and readability. Bullet points…
ROUND function rounds the number value to nearest digit mentioned in argument.
ROUND function has two required arguments i.e. number and num_digits