Hey Everyone ,
I have a column with one or two letter codes. Sometimes, this column has multiple codes separated by a "/". For example: AB, A, CA/AB, AB/DD/AD etc. There are a finite number of different codes, about 20. I want to be able to add up the number of times each code is present on that column, regardless of whether it's all alone or with other codes included. Can someone help me?
Example:
Code:
AB
DD/AB
AC
DD
DD/AC/AB
AB/AC
DD
etc...
I would like to count each code:
AB - 4
AC - 3
DD - 4
etc
I have a column with one or two letter codes. Sometimes, this column has multiple codes separated by a "/". For example: AB, A, CA/AB, AB/DD/AD etc. There are a finite number of different codes, about 20. I want to be able to add up the number of times each code is present on that column, regardless of whether it's all alone or with other codes included. Can someone help me?
Example:
Code:
AB
DD/AB
AC
DD
DD/AC/AB
AB/AC
DD
etc...
I would like to count each code:
AB - 4
AC - 3
DD - 4
etc