Hi I have surname and name in the same column.
I want them separate (splitted)
For the surname I use :
and that return firstname.
All is ok.
But afetr there is a space and then the name.
How to extract the name after the space?
I want them separate (splitted)
For the surname I use :
Code:
Firstname = Split(fullname," ")(0)
All is ok.
But afetr there is a space and then the name.
How to extract the name after the space?