I have a string of the form:
"word 1, word 2, ..., word n, [Etiquette], many other words"
I would like to retrieve only "Etiquette" and put it in a variable.
For the moment I have for example v = "blabla, [Etiquette]"
I know I can use the function Split but when I just try to display Debug.Print Split(v)
I get a type error.
Thank you for your help !