LisetteG Posted April 27, 2010 Posted April 27, 2010 My database includes records for Korean "clients." I would like to find a calculation that will add a space between each character in their names. For example, go from this 안중태 To this: 안 중 태 Anyone know a way to do this? Thanks in advance for your input. Lisette
comment Posted April 27, 2010 Posted April 27, 2010 I am under the vague impression that the RomanZenkaku() function is supposed to do something like that. If not, you'll need a custom recursive function (requires the Advanced version).
LisetteG Posted April 27, 2010 Author Posted April 27, 2010 I just used the left, right and middle functions in a calculation. That worked for me. In case anyone is curious. Left(field name)&" "&Right(field name)&" "&Middle(field name; 2 ; 1)
comment Posted April 27, 2010 Posted April 27, 2010 I presume you mean = Left ( field name ; 1 ) & " " & Middle ( field name ; 2 ; 1 ) & " " & Right ( field name ; 1 ) That will work as long as your field contains EXACTLY 3 characters.
LisetteG Posted April 27, 2010 Author Posted April 27, 2010 oh yes, I typed that up in a hurry. Records have 2-3 characters in that field. So it works out.
comment Posted April 27, 2010 Posted April 27, 2010 (edited) If it's 2 characters, then it won't work correctly. But if it's at most 3 characters, you could use = Trim ( Left ( text ; 1 ) & " " & Middle ( text ; 2 ; 1 ) & " " & Middle ( text ; 3 ; 1 ) ) Edited April 27, 2010 by Guest
LisetteG Posted May 3, 2010 Author Posted May 3, 2010 Thank you very much. Exactly what I was looking for.
Recommended Posts
This topic is 5377 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