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 6248 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hi

I have a paragraph with 4 lines.

Like

apples oranges bananas

Red orange yellow

round, round, oblong,

Fruit, citrus, Fruit

I need to send each Line into a field

like "firstline" "secondline" thirdline" fourth line"

Could I get some help with this

Thanks

Posted (edited)

One way (if you mean pulling the lines into different fields, would be to use GetValue(). For retrieving the first line: [color:blue]GetValue ( yourTable::yourText ; 1 ). For retrieving the second line: [color:blue]GetValue ( yourTable::yourText ; 2 ) ... and so on.

If you mean changing the multilines into ONE line within ONE field:[color:blue] Substitute ( yourTable::yourText ; ¶ ; ", " )

Update: Your example has commas in some instances but not others. Since I add commas, you will get doubles and it looks quite messy. You can clean it up by:

[color:blue]Substitute ( Substitute ( yourTable::yourText ; ¶ ; ", " ) ; ",," ; "," )

... but then, you DON'T have commas in other places. Without a clear pattern, I can't give a specific calculation so you may need to adjust as needed. :wink2:

Edited by Guest

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