How to Sum

G

Guest

I've got a table that has multiple columns. We are using it to calculate
payroll....It looks like the following....
Pay Period 1
A B C
Allred, C. 1500.00 25.45
Hills, J. 1750.00 25.45
Smith, J. 1500.00 25.45

Pay Period 2
Allred, C. 1500.00 25.45
Hills, J. 1750.00 25.45
Smith, J. 1500.00 25.45

I need a formula that looks at Column A, when it says "Allred, C." it then
calculates column B so that I have a total for both pay periods. I'm at a
loss as to what the formula should look like....

Any help would be appreciated.
 
J

jaydywan

=SUMIF(A:A, "Allred, C.",B:B )

This will look at Column A and sum the blocks in Column B if Column A
is "Allred, C.". Hope this helps, jcd
 
G

Guest

assume allred, C. is in a1

in D1 put in the formula
=sumif(A:A,A1,B:B)

then drag fill down column D as far as necessary.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

SUMIF??? 3
How do I make a total sheet? 1
How do I create a total sheet 2
Vlookup across worksheets. 3
LookUp 4
Summary Query based on First Occurrence 12
How do I assign variables 7
Count Unique Combinations 6

Top