Reversing the words in a cell

Solved
Alex92 -  
Vaucluse Posted messages 27336 Registration date   Status Contributeur Last intervention   -
Hello,

My problem is simple, I have a table with a column for Users.
The names are formatted like this:

LASTNAME, Firstname

I need to change them to this format:

Firstname.LASTNAME

Basically, I need to reverse the two words and replace the "comma/space" with a "dot".

Thank you in advance for your help, as I have over 3000 lines in my file.
Alex

3 réponses

JvDo Posted messages 1924 Registration date   Status Membre Last intervention   859
 
Hello,

try =RIGHT(C5,LEN(C5)-SEARCH(", ",C5)-1)&&"."&LEFT(C5,SEARCH(", ",C5)-1)

regards
3