I have 2 columns A & B. Need to compare A value with entire B and print count new Column C.
That is for each value in A column should be compared with entire B Column values and print the count of A column value occurrence in B column as shown below..
Actually all values are alphanumeric values
Example,
A B C (Expected output)
89 10 0
10 63 1
55 63 0
89 63 0
63 8 3
9 2 0
10 6 1
Can anyone help me ?
Bookmarks