Forum Discussion
Maria760
Mar 21, 2023Copper Contributor
SUMIF AND EXCLUDE VALUES
I am trying to exclude values based on a specific text. I used used sumif to sum values based on a project number in one sheet and pull from another sheet where the column lists two project numbers ...
- Mar 21, 2023
=SUMIFS(C2:C10,D2:D10,"north",E2:E10,"<>old")
With SUMIFS you can exclude some values based on text like in the example. An alternative could be SUMPRODUCT.
OliverScheurich
Mar 21, 2023Gold Contributor
=SUMIFS(C2:C10,D2:D10,"north",E2:E10,"<>old")
With SUMIFS you can exclude some values based on text like in the example. An alternative could be SUMPRODUCT.
Maria760
Mar 21, 2023Copper Contributor
OliverScheurich Thank you! That formula worked for me!!