Several exclusion criteria SUMIFS Excel

Solution 1:

Use the AND form by asking for the criteria as two different entries.

This is saying sum all of B where A is not equal to Banana AND not equal to Apricot

=SUMIFS(B:B,A:A,"<>Banana",A:A,"<>Apricot")

enter image description here