Doniu
Doniu

Reputation: 115

Formula with one of the condition is FALSE other is TRUE

I have an Excel formula that sums something if 2 conditions are TRUE:

=SUMIFS(F:F,$A:$A,$A71,$M:$M,$M71)

What I was looking for, is actually changing one of those conditions to check if its FALSE, so:

Scenario:

When it finds all records with different value in A and same value in M

How can I do it? Thank you for help

Upvotes: 2

Views: 37

Answers (1)

user4039065
user4039065

Reputation:

Try,

=SUMIFS(F:F, $A:$A, "<>"&$A71, $M:$M, $M71)

Upvotes: 2

Related Questions