You could use multiple =sumif()'s:
=SUMIF(A1:A5,"apple",B1:B5)
+SUMIF(A1:A5,"pear",B1:B5)
+SUMIF(A1:A5,"orange",B1:B5)
Or you could use something like:
=sum(SUMIF(A1:A5,{"apple","pear","orange"},B1:B5))
Adjust your range...I bet it doesn't stop with row 5.
> If I have two column as below:
> (ColumnA) (Column B)
[quoted text clipped - 12 lines]
> How can I sum up more than two items in the ColumA, like sum up "Pear" +
> "Apple" +"Orange" together.

Signature
Dave Peterson