Merge rows of similar data

Solved/Closed
Jay - Mar 30, 2010 at 10:21 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 30, 2010 at 11:51 AM
Hi,

I am trying to merge various rows of data with a common headin in Column A. For example I have the following data:

A 1 0 0 0 1
B 1 1 0 0 0
C 1 0 0 0 0
A 0 1 0 0 0
B 0 0 1 1 1
C 0 1 1 1 1

I would like:

A 1 1 0 0 1
B 1 1 1 1 1
C 1 1 1 1 1

I dont want to add them together, as they are dates, but i would like to end up with no duplicate rows and all data relevant to the column a heading on the same row,

Thanks!



1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Mar 30, 2010 at 11:51 AM
you can try this

copy the unique value to a new sheet( use advance filter)

The you can use this formula

=MAX(SUMPRODUCT((Sheet1!$A$1:$A$6=$A1) * (Sheet1!B$1:B$6)))
0