Find certain "Text" in a specific coloum, add corres. values

  • Thread starter Thread starter Arum Khan
  • Start date Start date
A

Arum Khan

Hi,
I have two coloums. One has text and the other has Values.
I need excel to search through a whole coloum, and summerize the results.
My coloums look like as follows

A 2
B 5
A 2

The results should look like

A 4
B 2

How can I achieve this?
Thanks
 
Try =SUMIF(C1:C3,"A",D1:D3)

This is quite expandable using sumproduct for a criteria in B and matching
in C and then sum C.

HTH
Regards,
Howard
 
Back
Top