If I have 3 columns one is "department", the second is "description", and the third is "amount".
I would like to sum up the total "amount" for only department-1 in the "department" column, that doesn't contains "ABC" or "EFG" or "JKL" in the description column.
I am trying to use =SUMIFS({amount}, {department},{department-1},OR(NOT(CONTAINS("ABC", @cell),("EFG",@cell),("JKL",@cell)))}
My concern is with the NOT CONTAINS formula only. please help.