Hi,
Is there a way to count each (different) characters in a string?
Like, how many of each character

For example, aabbc
a = 2
b = 2
c = 1

Another example, aaabc
a = 3
b = 1
c = 1

I need to do this in VBA... Thanks A Function would be nice if possible