Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

Hi,

I would like to be able to split a field into two fields.

This field contains text see below:

Bridge House¶63-65 North Wharf Road

I would like to split this from the pilcrow. Important note to consider the pilcrow is literal. I have tried to use rightword in a calculation field but as the number of words vary from record to record I can't get a clean result.I'm not able to see a good text function that fits my needs. Any ideas?

Thanks

Posted

I just did a find on the pilcrow ("¶")and replaced it with a semi colon.

I then exported that field into excel and used the semi colon as a delimiter. I was then able to split the fields.I just imported the two fields back into Filemaker. Problem solved.

I would still like to find a solution using Filemaker. I know there must be a better way of doing this.

Thanks,

Posted

To break out the field contents within FileMaker, you can use a calc expression along the lines of:

Left(YourField; Position(YourField; "¶"; 1; 1) - 1)

...to retrieve everything that comes before the pilcrow, and use:

Right(YourField; Length(YourField) - Position(YourField; "¶"; 1; 1))

...to retrieve everything that comes after the pilcrow. :wink2:

This topic is 6298 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.