Thanks

I have to say that is fast support from the forum and that was cool.
I'd rather be corrected and learn the right way than to go on thinking I'm doing it right and its all wrong.
So here I added a piece. I wanted to set another hotkey to paste the name as Smith, John (adding comma and space) Using the syntax from the provided code
StringReplace, string, string, %A_Tab%, `,%A_space%Here it is in full, copy from Excel
SMITH JOHN L
and paste as either
Smith;John L
or Smith, John L
; Convert text from clipboard
^\:: ; Convert text Uses CTRL and \ as hotkey
StringUpper string, clipboard, T ; Copies text and converts Upper case to lowercase except for first letter of word
StringReplace, string, string, %A_Tab%, `; ; Replaces Tab with semicolon
Send % string
RETURN
^]:: ; Convert text Uses CTRL and ] as hotkey
StringUpper string, clipboard, T ; Copies text and converts Upper case to lowercase except for first letter of word
StringReplace, string, string, %A_Tab%, `,%A_space% ; Replaces Tab with comma and a space
Send % string
RETURN
; End Convert text
Just wanted to share the final, let me know if my comments are wrong and I'll correct.
:wink: