SUMPRODUCT function performs multiplication of numbers within arrays and then sum the values
SUMPRODUCT function has one required argument i.e. array1 and optional argument i.e. [array2]… pulvinar dapibus leo.
=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:
SMALL function is used to get the Smallest k-th value from the range.
SMALL Function has two required arguments i.e. array, and k
Microsoft Excel “NOW” function is used to get the current Date and Time. It is very useful function and can be used in many ways.
FIND function is used to find the position of text, or character in an available string.
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
INDIRECT function is used to convert the text/string into cell reference. Function provides output as the value of that cell reference.
UPPER function is used for changing the text/string to UPPER case in Microsoft Excel. The output of the function returns value in new cell.