Let's say I have this variable:
word = "habit"
which command in VBA will allow me to count how many characters are there in this variable (in my case it's 5).
Important: the variable "word" contains only one word, no spaces, but may have contain numbers and hyphens.
Len is what you want.
Do you mean counting the number of characters in a string? That's very simple
Try this:
Although that's not what your question title asks =)
Use the Len function