Find Duplicate with formula and make idividual list

Navi_G

Board Regular
Joined
May 30, 2018
Messages
94
Office Version
  1. 2016
Platform
  1. Windows
Hi,


In Illustration i see duplicates and i want to make a list with formula.
other if possible to sum of list idividual with same column like

Question Table

Invioce No. Total
11760 $90.03
11105 $77.63
11173 $74.92
11871 $83.29
11334 $96.34
11908 $61.27
11961 $67.38
11105 $61.66
11334 $95.72
11766 $69.41
11468 $86.76
11173 $72.88
11306 $69.90
11905 $68.37
11306 $54.00


Desired Result Table

Invioce No.Sum Total
11105 $139.29
11173 $147.80
11334 $192.06
11306 $123.90

Please help on Duplicate and unique list formula and sum of duplicate of total.
I think you better understand my problem.

Thanks
Navi_G:confused:
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
A
B
C
D
E
1
Invioce No.TotalInvioce No.Sum Total
2
11760​
$90.03​
11760​
90.03​
3
11105​
$77.63​
11105​
139.29​
4
11173​
$74.92​
11173​
147.8​
5
11871​
$83.29​
11871​
83.29​
6
11334​
$96.34​
11334​
192.06​
7
11908​
$61.27​
11908​
61.27​
8
11961​
$67.38​
11961​
67.38​
9
11105​
$61.66​
11766​
69.41​
10
11334​
$95.72​
11468​
86.76​
11
11766​
$69.41​
11306​
123.9​
12
11468​
$86.76​
11905​
68.37​
13
11173​
$72.88​
14
11306​
$69.90​
15
11905​
$68.37​
16
11306​
$54.00​
Sheet: Sheet70

Array formula in cell D2:
=INDEX($A$2:$A$16,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$16),0))

Formula in cell E2:
=SUMIF($A$2:$A$16,D2,$B$2:$B$16)
 
Upvote 0
Thanks For your reply

I understand easily thank and please guide me on unique value list please.
 
Upvote 0
=INDEX($A$2:$A$16,MATCH(0,COUNTIF($D$1:D1,$A$2:$A$16),0))

Formula is not working please check and confirm.
 
Upvote 0
Perhaps you did not apply control+shift+enter to the suggested formula.

Another way would be the following.


Book1
ABCDE
1Invioce No.Total11
21176090.03Invioce No.Sum Total
31110577.6311105139.29
41117374.9211173147.8
51187183.2911306123.9
61133496.3411334192.06
71190861.271146886.76
81196167.381176090.03
91110561.661176669.41
101133495.721187183.29
111176669.411190568.37
121146886.761190861.27
131117372.881196167.38
141130669.9
151190568.37
161130654
Sheet1


In D1 just enter:

=SUM(IF(FREQUENCY(A2:A16,A2:A16),1))

In D3 control+shift+enter, not just enter, and copy down:

=IF(ROWS($D$3:D3)>$D$1,"",MIN(IF(ISNA(MATCH($A$2:$A$16,$D$2:D2,0)),$A$2:$A$16)))

Control+shift+enter: Press down the control and the shift keys while you hit enter key. If done correctly, Excel itself puts a pair of { and } around the formula in recognition.

In E3 just enter and copy down:

=IF($D3="","",SUMIFS($B$2:$B$16,$A$2:$A$16,$D3))
 
Upvote 0
Perhaps you did not apply control+shift+enter to the suggested formula.

Another way would be the following.

ABCDE
1Invioce No.Total11
21176090.03Invioce No.Sum Total
31110577.6311105139.29
41117374.9211173147.8
51187183.2911306123.9
61133496.3411334192.06
71190861.271146886.76
81196167.381176090.03
91110561.661176669.41
101133495.721187183.29
111176669.411190568.37
121146886.761190861.27
131117372.881196167.38
141130669.9
151190568.37
161130654

<COLGROUP><COL><COL><COL><COL><COL><COL></COLGROUP><THEAD>
</THEAD><TBODY>
</TBODY>
Sheet1



In D1 just enter:

=SUM(IF(FREQUENCY(A2:A16,A2:A16),1))

In D3 control+shift+enter, not just enter, and copy down:

=IF(ROWS($D$3:D3)>$D$1,"",MIN(IF(ISNA(MATCH($A$2:$A$16,$D$2:D2,0)),$A$2:$A$16)))

Control+shift+enter: Press down the control and the shift keys while you hit enter key. If done correctly, Excel itself puts a pair of { and } around the formula in recognition.

In E3 just enter and copy down:

=IF($D3="","",SUMIFS($B$2:$B$16,$A$2:$A$16,$D3))

Hi,

Dear Aladin Akyurek if i want only duplicate values and and ignor single values then what formula is rquired.

Thanks For your expert opinion.

Thanks
Navi_G:confused:
 
Upvote 0
Hi,

Dear Aladin Akyurek if i want only duplicate values and and ignor single values then what formula is rquired.

Thanks For your expert opinion.

Thanks
Navi_G:confused:


Book1
ABCDE
1Invioce No.Total4
21176090.03Invioce No.Sum Total
31110577.6311105139.29
41117374.9211173147.8
51187183.2911334192.06
61133496.3411306123.9
71190861.27
81196167.38
91110561.66
101133495.72
111176669.41
121146886.76
131117372.88
141130669.9
151190568.37
161130654
Sheet1


In D1 just enter:

=SUM(IF(FREQUENCY(A2:A16,A2:A16)>1,1))

In D3 control+shift+enter, not just enter, and copy down:

=IF(ROWS($D$3:D3)>$D$1,"",INDEX($A$2:$A$16,SMALL(IF(FREQUENCY(IF(ISNUMBER($A$2:$A$16),MATCH($A$2:$A$16,$A$2:$A$16,0)),ROW($A$2:$A$16)-ROW($A$2)+1)>1,ROW($A$2:$A$16)-ROW($A$2)+1),ROWS($D$3:D3))))

In E3 just enter and copy down:

=IF($D3="","",SUMIFS($B$2:$B$16,$A$2:$A$16,$D3))
 
Upvote 0
=IF(ROWS($D$3:D3)>$D$1,"",INDEX($A$2:$A$16,SMALL(IF(FREQUENCY(IF(ISNUMBER($A$2:$A$16),MATCH($A$2:$A$16,$A$2:$A$16,0)),ROW($A$2:$A$16)-ROW($A$2)+1)>1,ROW($A$2:$A$16)-ROW($A$2)+1),ROWS($D$3:D3))))

Dear Sir thanks alot For solved problem.

Formula Structure is little bit tough and not undstand.its ok thanks.

Regards & thanks
Navi_G:cool:
 
Upvote 0

Similar threads

Forum statistics

Threads
1,214,586
Messages
6,120,402
Members
448,958
Latest member
Hat4Life

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