Page 1 of 1
Get uniques
Posted: Mon Jan 31, 2022 2:43 pm
by sna
Hi there,
Hi to everyone here,I need your expertise on this.
is there a way when I add a Same user in column 12 that already exist, it will retain the unique value in column D and remove the duplicate value?
Example highlight in color yellow"Dipika Yadav" already exist in row 7, but in column D the "CHS08" is the unique value that should retain and delete or remove(CHS02,CHS06) the duplicate.
Hope you can help me on this.
Re: Get uniques
Posted: Mon Jan 31, 2022 4:32 pm
by norkaz
...
Try this.
E2
=IFERROR(LOOKUP(2,1/ISERROR(SEARCH(TRIM(MID(SUBSTITUTE(D2,",",REPT(" ",50)),(COLUMN($G2:$M2)-COLUMN($G2)+1)*50-49,50)),VLOOKUP(A2,$A$2:$D$11,4,0))),TRIM(MID(SUBSTITUTE(D2,",",REPT(" ",50)),(COLUMN($G2:$M2)-COLUMN($G2)+1)*50-49,50))),D2)
Norkaz
Re: Get uniques
Posted: Mon Jan 31, 2022 8:12 pm
by sna
hi...
formula should be reference in Column C(UserID) not Column A (First Name)
Re: Get uniques
Posted: Tue Feb 01, 2022 6:53 am
by norkaz
...
If column C is the keyword, change the VLOOKUP columns reference as below.
E2
=IFERROR(LOOKUP(2,1/ISERROR(SEARCH(TRIM(MID(SUBSTITUTE(D2,",",REPT(" ",50)),(COLUMN($G2:$M2)-COLUMN($G2)+1)*50-49,50)),VLOOKUP(C2,$C$2:$D$11,2,0))),TRIM(MID(SUBSTITUTE(D2,",",REPT(" ",50)),(COLUMN($G2:$M2)-COLUMN($G2)+1)*50-49,50))),D2)
Norkaz
Re: Get uniques
Posted: Thu Feb 03, 2022 12:00 pm
by sna
if I enter same user(Column C) it shows existing request in column E as seen in the image below. If column D is existing for user in column C can we have column E says " No new request provided"?
Re: Get uniques
Posted: Thu Feb 03, 2022 12:37 pm
by snasui
sna wrote: Thu Feb 03, 2022 12:00 pm
If I enter same user(Column C) it shows existing request in column E as seen in the image below.

Not found the image in your post. Please attach the image again.
Re: Get uniques
Posted: Sat Feb 05, 2022 9:02 pm
by sna
here is an image after test more on column c
Re: Get uniques
Posted: Sat Feb 05, 2022 10:25 pm
by norkaz
...
E2
=IF(C2&D2=C1&D1,"No new request provided",IFERROR(LOOKUP(2,1/ISERROR(SEARCH(TRIM(MID(SUBSTITUTE(D2,",",REPT(" ",50)),(COLUMN($G2:$M2)-COLUMN($G2)+1)*50-49,50)),VLOOKUP(C2,$C$2:$D$11,2,0))),TRIM(MID(SUBSTITUTE(D2,",",REPT(" ",50)),(COLUMN($G2:$M2)-COLUMN($G2)+1)*50-49,50))),D2))
Norkaz