Processing Large Amounts Of Data

2009-07-29 Thread Warren Kuhl
I have a variable that has approx 100,000 records (loaded from a text file). I need to read through each record and extract items from each record. I am currently using: Repeat with x = 1 to tRecordCount Put item 2 of line x of tData into tItem2 Put item 6 of line x of tData into tItem6 ...process

Re: Processing Large Amounts Of Data

2009-07-29 Thread Richard Gaskin
Warren Kuhl wrote: I have a variable that has approx 100,000 records (loaded from a text file). I need to read through each record and extract items from each record. I am currently using: Repeat with x = 1 to tRecordCount Put item 2 of line x of tData into tItem2 Put item 6 of line x of tData

Re: Processing Large Amounts Of Data

2009-07-29 Thread Warren Kuhl
Richard, Thanks...that really helps! I will give it a try. Warren On 7/29/09, Richard Gaskin wrote: > > Warren Kuhl wrote: > > I have a variable that has approx 100,000 records (loaded from a text >> file). >> I need to read through each record and extract items from each record. >> >> I am c