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:
Excel Function DATE When you work with dates in Excel, the DATE function is crucial to understand. The reason is that some other Excel functions may not always recognize dates when they are entered as…
Microsoft Excel “HOUR, MINUTE, SECOND Functions” are time related functions helps to extract the Hour, Minute or Second from a complete Time.
Watch Video: Rand and Randbetween Excel Functions Generate Random Numbers using Excel Functions We have got many instances where we needed to generate a random database or values. “RAND function” is very useful for users…
Print Row Header on Each Page in Excel means that when you print your worksheet, the selected row (often the top row with column headers) will repeat at the top of every printed page. This ensures…
Excel Dark mode reduces eye strain and makes the screen more comfortable to work on in high-contrast settings. Follow this easy tutorial to enable dark mode for both the Excel interface and the spreadsheet cells.
How to use Excel Function PROPER? PROPER function is used for changing the format of any text or string to PROPER or SENTENCE Case. PROPER Function has argument only one argument i.e. text, which makes the function…