Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

"Words" adn other text functions help!

Featured Replies

Good morning, everyone!  I have a milti-line field that I use to drop in a name and address, which I then have to parse out to other fields.  I've attached an example photo of the multi line field, and the other fields to which I need to add the data.

My question is - how can I use the text functions to "grab" the key data (such as the 2nd "address" line, the third "zip code" line, etc) separately, since we have the multi-line data issue?  What would be the most efficient way to accomplish this?

Thank you in advance.

data sample.PNG

You can extract the text from a specific line in a multi-line field by using the GetValue() function:

GetValue ( YourField ; 2 )

will return the text from the 2nd line of the field.

Extracting specific data can be done in various ways; which way is the best depends on the rules by which the input data is organized - and this is hard to determine from a single example. For instance, if the ZIP code is always a group of digits with a possible hyphen separator, you could use:

RightWords ( YourField ; 1 )

to extract it. Or, if you know it's always in the format of #####-####, you could use:

Right ( YourField ; 10 )

to get the same result.

 

  • Author
35 minutes ago, comment said:

You can extract the text from a specific line in a multi-line field by using the GetValue() function:


GetValue ( YourField ; 2 )

will return the text from the 2nd line of the field.

Extracting specific data can be done in various ways; which way is the best depends on the rules by which the input data is organized - and this is hard to determine from a single example. For instance, if the ZIP code is always a group of digits with a possible hyphen separator, you could use:


RightWords ( YourField ; 1 )

to extract it. Or, if you know it's always in the format of #####-####, you could use:


Right ( YourField ; 10 )

to get the same result.

 

Thank you!  Works like a charm :)

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.