WANT TO STAND OUT?

Use the form on the right to contact us.

 

16192 Coastal Highway
Deleware
USA

Intellitech Analytics, LLC provides consultative benchmarking and analytics services for businesses seeking to separate themselves from the pack.

Tips for Excel Users

SUMPRODUCT

Evan Paulus

Most Excel users, even "power" users, have a limited set of functions that they use the majority of the time. Although each users most useful functions might vary slightly, there are some classics that just about everyone uses from time to time. Some we've described already (See the SUMIF and SUMIFS and VLOOKUP and INDEX/MATCH posts), and still others will come in future posts. 

One such function is SUMPRODUCT, which is particularly useful when you have a table that contains an inventory of goods or purchases, or both.

For example, the below table shows a receipt for a dinner party at a local restaurant. The SUMPRODUCT function makes calculating the total simple.

ABCD
1GuestItemQuantityItem Cost
2SallyDrink3$4.50
3SallyAppetizer1$13.00
4SallySalad1$8.00
5AmyDrink2$2.50
6AmyEntree1$22.50
7JamesDrink4$6.00
8JamesSalad1$8.00
9JamesEntree1$17.50
10BrandonDrink3$3.50
11BrandonAppetizer2$9.00
12BrandonDessert1$6.00
13
14ValueFormula
15$120.50=SUMPRODUCT(C2:D12)

What the SUMPRODUCT function is doing in the spreadsheet above is multiplying each item (Quantity and Item Cost) by each other and then adding them. Sally bought three drinks at $4.50 each so, in total, her drink cost was $13.50. Add that to the one appetizer @ $13.00 that she bought and so forth. The total bill for the party of four this evening was $120.50.