ghengis Posted August 29, 2007 Posted August 29, 2007 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
ghengis Posted August 29, 2007 Author Posted August 29, 2007 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,
CobaltSky Posted August 29, 2007 Posted August 29, 2007 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:
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now