I am compiling data with thousands of entries. I need an itemized result based upon a person's name and the sum of a subcategory under their name-
Example:
A B C D
Person 1 100 XM CSR
Person 1 100 CC_Consumer
Person 1 -50 XM CSR
Person 1 -25 CC_Consumer
Total 200 -75
Turn the preceding data into:
Person 1 Totals
XM CSR 50
CC_Consumer 25
There are a lot of different people and several categories. I would use =sumif(A:A,A10,B:B)-sumif(A:A,A10,C:C) if I didn't need it also dependent on Column D.
So I need the formula to subtract the sum of all values in C that match specific names in A and D from the sum of all values of B that match specific values of A and D.
Bookmarks