Biarpun gelar Sarjana Translator, tapi berhubung males terjemahin jadi di copy paste aja ... Here we describe only the simplest of methods. For an excellent overview of all those fancy SUMIF and SUMPRODUCTS formulas, please check out Bob Phillips' site . Thanks, Bob! Sum of units sold, where vehicle type is Cars uses just a single criterion: =SUMIF(A2:A10,”Cars”,C2:C10) And if we want a sum of units sold for all vehicle types except Cars, we could use: =SUMIF(A2:A10,”<>Cars”,C2:C10) Sum of units sold where vehicle type is Cars or Trucks: =SUMIF(A2:A10,”Cars”,C2:C10)+SUMIF(A2:A10,”Trucks”,C2:C10) Sum of units sold where vehicle type is Cars and Color is Black. The SUMIF function doesn’t work for multiple criteria in different fields. However, you can use an array formula (sometimes referred to as a CSE formula), which requires you to press Ctrl+Shift+Enter after typing it, instead of just Enter. =SUM((A2:A10=”Cars”)*(B2:B10=”Black”)*C2:C10) Sum of units sold where veh...