Reputation: 13
Here is the formula I have written that isn't working:
=SUMIF(Sheet2!E:E,"E2",Sheet2!T:T)
Sheet1 contains a list of person identifiers (column E).
Sheet2 contains rows that contain these identifiers and balances.
One individual identifier (column E) will be in multiple rows with a variety of balances (column T).
I want to pull the sum of an identifier's balances into Sheet1.
Upvotes: 1
Views: 171
Reputation: 12113
A couple of things to change:
E2
rather than 'E2'
. I.e. no apostrophesSo hopefully this works now:
=SUMIF(Sheet1!E:E,E2,Sheet2!T:T)
Upvotes: 1