Add cells with other identical attributes
Solved/Closed
Related:
- Add cells with other identical attributes
- 2007 microsoft office add-in microsoft save as pdf or xps - Download - Other
- How to add @ in laptop - Guide
- How to add songs to sound picker - Guide
- How to add someone on messenger with phone number - Guide
- Add messenger to home screen - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
May 11, 2010 at 06:09 AM
May 11, 2010 at 06:09 AM
insert a heading row.
data sample will be
name month amt
Andrew January 5
Andrew February 6
Barry January 12
Barry February 9
Barry March 1
by using advanced filter find out the UNIQUE names in column A
and park it some where below your data for example A9 down . it will be like this from A9 down
A9 name
A10 Andrew
A11 Barry
in B10(next to name andrew) copy paste this formula
=SUMPRODUCT(($A$2:$A$6=A10)*($C$2:$C$6))
copy B9 down as long as unique names are there.
you will get
name
Andrew 11
Barry 22
data sample will be
name month amt
Andrew January 5
Andrew February 6
Barry January 12
Barry February 9
Barry March 1
by using advanced filter find out the UNIQUE names in column A
and park it some where below your data for example A9 down . it will be like this from A9 down
A9 name
A10 Andrew
A11 Barry
in B10(next to name andrew) copy paste this formula
=SUMPRODUCT(($A$2:$A$6=A10)*($C$2:$C$6))
copy B9 down as long as unique names are there.
you will get
name
Andrew 11
Barry 22
May 11, 2010 at 09:18 AM