I have a sequence of texts that represent customers names, but they do not have spaces between each word/name (for example: JohnWilliamsSmith). However the words can be differentiated because the first letter of each word is uppercase.
So I need to transpose this list of customers strings to their regular format, with spaces between each word. So I want JohnWilliamsSmith to become John Williams Smith. However, I couldn't think of an immediate way to achieve this, and I believe that no combination of Excel formulas can offer this result.
Thus, I think the only solution would be to set up a Macro. It might be a Function
to be used as a formula, or a code in module to work the data in a certain range (imagine that the list is in Range ("A2: A100")
).
Does anyone have any idea how I can do this?