George TOUBALIS Posted October 7, 2005 Posted October 7, 2005 I recieved an excel file with names The man who wrote the names put the last name first then a comma and then the first name. I want a calculation to make the name with this order First name & Space & last name Can you help with this problem???
aaa Posted October 7, 2005 Posted October 7, 2005 Create calculated field Your_name=(RightWords(name,1)&" "&LeftWords(name,1)
George TOUBALIS Posted October 7, 2005 Author Posted October 7, 2005 It do not work so well... see the file please... Artist_BMG_Converted.fp7.zip
Breezer Posted October 7, 2005 Posted October 7, 2005 you need a calculation to check if there's a comma. If no comma, leave name as is. If there's a comma, then perform the calculation. Change your calculation to: Case ( comma = 0;Name; (RightWords(Name;1)&" "&LeftWords(Name;1)) ) That's it.
Recommended Posts
This topic is 6986 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now