Hello, I have a list of contact information which has a very large number of duplications. I was able to filter it down to unique values, but I've been asked to add a column which states the number of times each entry was repeated in the original list. We want this (each character is a column):
aa
aa
aa
az
bb
bx
cc
cc
cc
dd
to turn into:
aa3
az1
bb1
bx1
cc3
dd1
If someone could help me with this I would be eternally grateful!
aa
aa
aa
az
bb
bx
cc
cc
cc
dd
to turn into:
aa3
az1
bb1
bx1
cc3
dd1
If someone could help me with this I would be eternally grateful!