Dani R Posted January 28, 2011 Posted January 28, 2011 I have a record that has 5 lines in it . example "line 1 line 2 line 3 line 4 line 5" Is there away that i can break it down in to five records. (the problem is the i get the above record from a external source and i have to break it down) thanks Dani
bcooney Posted January 29, 2011 Posted January 29, 2011 If you have consistency, you can parse. Use GetValue ( field, n)
bcooney Posted January 29, 2011 Posted January 29, 2011 First of all, a record cannot have five lines in it, but a FIELD can. That is what I thought you were talking about. You import this record to a temporary table which has a text field of 5 lines. Then using a script, you parse the field by using Set Field (field1); GetValue(multilinefield, 1).
bruceR Posted January 29, 2011 Posted January 29, 2011 I have a record that has 5 lines in it . example "line 1 line 2 line 3 line 4 line 5" Is there away that i can break it down in to five records. (the problem is the i get the above record from a external source and i have to break it down) thanks Dani Not enough information. What is the natureof the record and those lines? Order and details?
Recommended Posts
This topic is 5047 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