mehidy1437
Active Member
- Joined
- Nov 15, 2019
- Messages
- 348
- Office Version
- 365
- 2016
- 2013
- Platform
- Windows
- Mobile
- Web
Hi Guys,
I need help to compare 3 columns (G, H, I) values with many rows & want to keep all the unique value with the first duplicate.
Here below what am I looking for?
If there is any formula without CTRL+SHIFT+ENTER will be better.
Also, I don't want to have a blank cell in between, the required result in column K.
I need help to compare 3 columns (G, H, I) values with many rows & want to keep all the unique value with the first duplicate.
Here below what am I looking for?
If there is any formula without CTRL+SHIFT+ENTER will be better.
Also, I don't want to have a blank cell in between, the required result in column K.
Find-Duplicates-Items-in-Combine-Columns-in-Microsoft-Excel.xlsx | |||||||
---|---|---|---|---|---|---|---|
G | H | I | J | K | |||
1 | Date | Name List | PO | RESULT | |||
2 | 10-Feb-14 | Aaron | 20 | Unique | Aaron | ||
3 | 1-Jan-14 | Aaron | 28 | Duplicate | Aaron | ||
4 | 5-Mar-14 | Coleman | 20 | Duplicate | Coleman | ||
5 | 15-Apr-14 | Coleman | 21 | Unique | Coleman | ||
6 | 1-Jan-14 | Aaron | 28 | Duplicate | |||
7 | 2-Jan-14 | Conan | 30 | Unique | Conan | ||
8 | 5-Mar-14 | Connell | 31 | Unique | Connell | ||
9 | 5-Mar-14 | Coleman | 20 | Duplicate | |||
10 | 15-Feb-14 | Bowen | 32 | Unique | Bowen | ||
11 | 4-Jan-14 | Braden | 33 | Unique | Braden | ||
12 | 5-Mar-14 | Bradley | 34 | Unique | Bradley | ||
13 | 15-Apr-14 | Brandan | 35 | Unique | Brandan | ||
14 | 20-Feb-14 | Brent | 36 | Unique | Brent | ||
15 | 15-Jan-14 | Brian | 37 | Unique | Brian | ||
16 | 5-Mar-14 | Brice | 38 | Unique | Brice | ||
17 | 15-Apr-14 | Brigham | 39 | Unique | Brigham | ||
18 | 22-Feb-14 | Aaron | 40 | Unique | Aaron | ||
19 | 16-Jan-14 | Abbott | 41 | Unique | Abbott | ||
20 | 5-Mar-14 | Coleman | 20 | Duplicate | |||
21 | 15-Apr-14 | Colin | 20 | Unique | Colin | ||
22 | 26-Feb-14 | Corwin | 42 | Unique | Corwin | ||
23 | 20-Jan-14 | Crispin | 43 | Unique | Crispin | ||
24 | 15-Apr-14 | Bond | 20 | Unique | Bond | ||
25 | 15-Apr-14 | Boris | 44 | Unique | Boris | ||
26 | 10-Feb-14 | Aaron | 21 | Duplicate | Aaron | ||
27 | 10-Feb-14 | Aaron | 21 | Duplicate | |||
28 | 5-Mar-14 | Abbott | 46 | Unique | Abbott | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
K28,K21:K26,K10:K19,K7:K8,K2:K5 | K2 | =H2 |
J2:J28 | J2 | =IF(COUNTIFS($G$2:$G$28,G2,$H$2:$H$28,H2,$I$2:$I$28,I2)>1,"Duplicate","Unique") |