Adding up totals

AnnieGr

New Member
Joined
Jan 21, 2019
Messages
19
I have three columns, 1st column has Sales peoples names in it, second column has type of order and third column has the total of the order

I would like to look up all the orders for John Smith, that have been won and total the value of the orders. I was using sumifs and its not working, is there another way?

Thank you
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I have three columns, 1st column has Sales peoples names in it, second column has type of order and third column has the total of the order

I would like to look up all the orders for John Smith, that have been won and total the value of the orders. I was using sumifs and its not working, is there another way?

Thank you

Can you send a copy of your dataset and what you want to see? I can make a formula for you, and help you get your desired setup. I just need to see the data so I can tell what you're trying to say
I would think something like this would work
=SUMIFS(ValuesRange,SalesPeopleRange,"John Smith",OrderTypeRange,"Won")
Not sure what to put as the order type criteria so I just put "Won" because you want to see orders that have been won
 
Upvote 0
Dan SmithABC CompanyOpenrakePricing£39,364.00

Dan SmithABC CompanyOpenRakePricing£39,378.00
Dan SmithABC Company HerefordOpenTedderNew Opportunity£79,690.00
Jamie BlandABC Of HerefordOpenSquare BalerNegotiation£88,340.00
Brian SmithABC TractorsOpenSquare BalerPotential£89,953.00

<colgroup><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>


Return

Dan Smith Pricing £78,742.00
Dan Smith New Opportunity £79,690.00

Jamie Bland Negotiation £88,340.00

Brian Smith Potential £89,953.00
 
Upvote 0
Here you go, is this what you're looking for?


Excel 2010
ABCDEF
1Sales PeopleCompanyxProduct TypeOrder TypeValue
2Dan SmithABC CompanyOpenrakePricing39,364.00
3Dan SmithABC CompanyOpenRakePricing39,378.00
4Dan SmithABC Company HerefordOpenTedderNew Opportunity79,690.00
5Jamie BlandABC Of HerefordOpenSquare BalerNegotiation88,340.00
6Brian SmithABC TractorsOpenSquare BalerPotential89,953.00
Sheet1




Excel 2010
ABCD
12Dan SmithPricing£ 78,742.00Dan Smith Pricing £78742
13Dan SmithNew Opportunity£ 79,690.00Dan Smith New Opportunity £79690
14Jamie BlandNegotiation£ 88,340.00Jamie Bland Negotiation £88340
15Brian SmithPotential£ 89,953.00Brian Smith Potential £89953
Sheet1
Cell Formulas
RangeFormula
C12=SUMIFS(F$2:$F$6,$E$2:$E$6,$B12,$A$2:$A$6,$A12)
D12=A12&" "&B12&" £"&SUMIFS(F$2:$F$6,$E$2:$E$6,$B12,$A$2:$A$6,$A12)


ps I work at Kubota lol
 
Upvote 0

Forum statistics

Threads
1,215,232
Messages
6,123,761
Members
449,120
Latest member
Aa2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top