how to total quantities of repeated numbers in a new column

Tyobes

New Member
Joined
Dec 25, 2019
Messages
20
Office Version
  1. 2013
Platform
  1. Windows
Hello
VB NU.JPG

I want to know how can calculate the total of qté (B column) of repeated/duplicate numbers of column A in a new column (C) and concat the numbers (D column) of these duplicate values in a new column (E) like the picture

Example: the number 67813 is duplicated twice, first time with 27 and second one with 4, so I want to have the total (27+4) in a new cell (C2 and C6); same thing with their Financial Number, both of them should be concat with "/"
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
I have more than 5000 numbers in a column A, and more 84 duplicated value, not just 67813 wich is duplicated, so for my case if SUMIFS will work fo me how can I work with it
SUMIFS(
  • sum_range - for my case B2:B78
  • range1 - The first range to evaulate.
  • criteria1 - The criteria to use on range1
 
Upvote 0
You can just use
Excel Formula:
=SUMIFS(B:B,A:A,A2)
 
Upvote 0
You can just use
Excel Formula:
=SUMIFS(B:B,A:A,A2)
Great thanks, I didn't think it would work; but what about the concatenateIFS, I know it's doesn't exist on excel so how to deal with it ?
 
Upvote 0
I've no idea what you mean.
 
Upvote 0

Forum statistics

Threads
1,215,461
Messages
6,124,954
Members
449,198
Latest member
MhammadishaqKhan

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