I have an expense report, and I want to sum the amount that does not equal a range of text, i.e.
Description Amount Category
misc.item $20.32 Gas
misc.item $10.20 Food
misc.item $5.68 Snacks
misc.item $40.00 Gas
misc.item $6.48 Food
misc.item $32.78 Gas
misc.item $4.32 Vending
misc.item $100.32 Food
misc.item $4.50 Lunch
misc.item $42.50 Gas
misc.item $23.50 Gift
How do I sum everything that IS NOT gas or food?
Also I will probably add a lot of other misc. things so =sumifs(B2:B12,C1:C12,"<>Gas",C1:C12,"<>Food") won't work for me cause I'd have to add another criteria every time something new is added
Description Amount Category
misc.item $20.32 Gas
misc.item $10.20 Food
misc.item $5.68 Snacks
misc.item $40.00 Gas
misc.item $6.48 Food
misc.item $32.78 Gas
misc.item $4.32 Vending
misc.item $100.32 Food
misc.item $4.50 Lunch
misc.item $42.50 Gas
misc.item $23.50 Gift
How do I sum everything that IS NOT gas or food?
Also I will probably add a lot of other misc. things so =sumifs(B2:B12,C1:C12,"<>Gas",C1:C12,"<>Food") won't work for me cause I'd have to add another criteria every time something new is added