Reputation: 61
I want to find the (Value Column) but it should consider the date (Column A) and the name of the person (Column B) who submitted the data.
DATA Sheet Sample
Upvotes: 0
Views: 46
Reputation: 59475
Please try SUMIFS, for example:
=SUMIFS(C:C,B:B,"Joseph",A:A,"11/2/2015")
Upvotes: 1