Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 5377 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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

Posted

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).

Posted

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)

Posted

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.

Posted (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 by Guest

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.