Say I have a worksheet with 6 columns and there are some rows in the sheet whose values from column 1 to column 5 are same just the numeric value in column 6 are different.
I want to find those near identical rows (if any) and then replace them with only one row where the values from column 1 to column 5 are same as before just the value in column 6 is the sum of all the column 6 values of those near identical rows.
Ex.
From
- 011 ----- JOHN HAMMOND ---- 15-02-1983 ---- USA ---- 3345669 ---- 4560.00
- 011 ----- JOHN HAMMOND ---- 15-02-1983 ---- USA ---- 3345669 ---- 60.00
- 011 ----- JOHN HAMMOND ---- 15-02-1983 ---- USA ---- 3345669 ---- 150.00
To
- 011 ----- JOHN HAMMOND ----- 15-02-1983 ----- USA ----- 3345669 ----- 4770.00
How can I do this?