|
-
September 7th, 2001, 11:14 AM
#1
Help - File Input
I am trying to read in a large file and process information based on groups of data. For example:
1111,name1,2,222
1111,name1,3,222
1111,name1,7,111
1200,name2,1,111
1203,name3,4,222
1203,name3,7,333
I would like to process all the 1111s,1200 and 1203s and append the results to an out put file. I have tried if statements and Do loops with out too much luck. Any suggestions would be appreciated. Thanks...
-
September 7th, 2001, 01:21 PM
#2
Re: Help - File Input
If your data is comma delimited then parse the data and place it an access Database. From there you can sort and output to just about any format.
-
September 7th, 2001, 02:18 PM
#3
Re: Help - File Input
Thanks for the suggestion. I still am wondering if it could be done with Do/Loop/IF statements.
-
September 7th, 2001, 02:47 PM
#4
Re: Help - File Input
How about creating an array, parse the data and add it to the array then sort it.
-
September 7th, 2001, 03:05 PM
#5
Re: Help - File Input
I'm affaid that the array would be too large. I have about 30,000 entries with an average of about 5 sublistings. Each sublisting has 12 "fields".
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|