I have a main table containing 5000 records. Each record consists of ID No., Year, Month, Workhours. The data looks like this:
ID No. Year Month Workhours
361234 2001 01 625
361234 2001 02 595
364218 2001 01 722
364218 2001 02 688
Using code, how can I extract the data for 361234 only and output it to a text file, then for 364218, looping thru each ID No until the entire main table has been "parsed" into separate text files? Note: this month, 361234 may consist of two records, next month it may consist of 6.
Thanks.
Richard...
ID No. Year Month Workhours
361234 2001 01 625
361234 2001 02 595
364218 2001 01 722
364218 2001 02 688
Using code, how can I extract the data for 361234 only and output it to a text file, then for 364218, looping thru each ID No until the entire main table has been "parsed" into separate text files? Note: this month, 361234 may consist of two records, next month it may consist of 6.
Thanks.
Richard...