Reversing Strings

India
February 20, 2007 6:56am CST
Reversing Strings Problem: Converting the full names in column A, formatted "LastName, FirstName" into names formatted "FirstName LastName". Solution: Use the RIGHT, LEFT, LEN and FIND text category functions, as follows: =RIGHT(A2,LEN(A2)-FIND("","",A2)-1)&"" ""&LEFT(A2,FIND("","",A2)-1) Cheers! ~~SiFaR~~ http://sifar.ueuo.com
No responses