Total duplicates formula

Drbarber

New Member
Joined
Oct 8, 2008
Messages
2
I need help building a formula to total each person's amounts in a separate column when they're duplicated. ex:

<table x:str="" style="border-collapse: collapse; width: 227pt;" width="303" border="0" cellpadding="0" cellspacing="0"><col style="width: 71pt;" width="95"> <col style="width: 48pt;" width="64"> <col style="width: 108pt;" width="144"> <tbody><tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt; width: 71pt;" width="95" height="17">SSN</td> <td style="width: 48pt;" width="64">AMT</td> <td style="width: 108pt;" width="144">TOTAL AMT</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt;" x:num="" align="right" height="17">387781101</td> <td x:num="" align="right">25</td> <td x:num="" align="right">25</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt;" x:num="" align="right" height="17">387783945</td> <td x:num="" align="right">75</td> <td x:num="" align="right">75</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt;" x:num="" align="right" height="17">387843713</td> <td x:num="" align="right">150</td> <td x:num="" align="right">150</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="background: rgb(255, 255, 153) none repeat scroll 0% 0%; height: 12.75pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" x:num="" align="right" height="17">387862646</td> <td x:num="" align="right">100</td> <td x:num="" align="right">177</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="background: rgb(255, 255, 153) none repeat scroll 0% 0%; height: 12.75pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" x:num="" align="right" height="17">387862646</td> <td x:num="" align="right">77</td> <td x:num="" align="right">177</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="background: rgb(255, 255, 153) none repeat scroll 0% 0%; height: 12.75pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" x:num="" align="right" height="17">387868771</td> <td x:num="" align="right">25</td> <td x:num="" align="right">181</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="background: rgb(255, 255, 153) none repeat scroll 0% 0%; height: 12.75pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" x:num="" align="right" height="17">387868771</td> <td x:num="" align="right">100</td> <td x:num="" align="right">181</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="background: rgb(255, 255, 153) none repeat scroll 0% 0%; height: 12.75pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" x:num="" align="right" height="17">387868771</td> <td x:num="" align="right">56</td> <td x:num="" align="right">181</td> </tr> </tbody></table>

Sometimes there will be as many as 5 or 6 duplicate values, sometimes none....

Any help is greatly appreciated.

-DRBARBER
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try using the SUMIF function, where you are summing all the Amt values from your entire column that match the SSN on that row.

See Excel's help on the SUMIF function for examples and explanations.
 
Upvote 0

Forum statistics

Threads
1,214,846
Messages
6,121,905
Members
449,054
Latest member
luca142

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