I have a table(Column B), I need to get the unique values alone after removing the duplicates in Column D.
if I add a new entry in B6 as "Delta", it should come in D4 automatically.
Please help
I have a table(Column B), I need to get the unique values alone after removing the duplicates in Column D.
if I add a new entry in B6 as "Delta", it should come in D4 automatically.
Please help
Copyright © 2021 Jogjafile Inc.

Leaving column A&B the same. put (number) 1 in C1. Then in C2 put
=IF(COUNTIF($B$1:$B2,$B2)=1,C1+1,C1)then drag downwards.Then in D1, put in
=IFERROR(INDEX($B:$B,MATCH(A1,$C:$C,0)),"")and drag downwards. Done. Now you should have the new list.