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

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

Recommended Posts

Posted

Hi all,

I have a field which contains data, which is seperated by carriage returns like the one below.

Apple

Orange

Banana

Grapes

Plum

Guava

What I would like to do is split the values into 6 records(in this case but could be many more).

Any advise would be much appreciated

Thanks

Jalz

Posted

No it does not matter, im just interested in splitting the values from a single field into multiple records in the same file.

Thanks

Jalz

Posted

Script something like:

 

Set Variable( $items; yourField )

Set Variable( $i; 0 )

Loop

 New Record

 Set Variable( $i; $i + 1 )

 Set Field( yourField; GetValue( $items; $i )

 Exit Loop If ( $i > ValueCount( $items ) )

End Loop

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