tallying sales amounts

jay-excel

New Member
Joined
Aug 20, 2009
Messages
34
Hello,
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p> </o:p>
I have four columns
B, D, E, G
<o:p> </o:p>
Column B = list of sales reps
Column D = sales amount product 1
Column E = sales amount product 2
Column G = sales amount product 3
<o:p> </o:p>
So, I have a list of sales for each sales rep for a given account. I am trying to automate or ease the process of tallying the total amount of sales for each sales agent.
After having made a sale, the sales rep enters their name, then the dollar amount of each item they have sold in the three columns. The list of sales becomes rather long.
<o:p> </o:p>
I am trying to have a total column or area that has the total sales amount for each sales rep for each product, then ultimately, their total sales (just a sum of the three). So, the total amount for Steve for product 1, then another total of product 2, and product 3. I have a set list of sales reps.
<o:p> </o:p>
I am open to all suggestions, be them formulas such as vlookup or index(match) or VBA code. I have tried tinkering with several different things, but usually I can only get the first sale of each sales rep to be taken from the list.
<o:p> </o:p>
Any help would be greatly appreciated. Thanks.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Create a distinct list of sales reps in column J.

J2, copy down:

=SUMIF($B$2:$B$100,$J2,$D$2:$D$100)

K2, copy down:

=SUMIF($B$2:$B$100,$J2,$E$2:$E$100)

L2, copy down:

=SUMIF($B$2:$B$100,$J2,$G$2:$G$100)

M2, copy down:

=SUM(J2:M2)
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,916
Members
449,093
Latest member
dbomb1414

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