I have comma delimited files that have data similar to this:
Specifically, my problem is that the data must be imported into an
ACCESS database, and the report format does not repeat certain field
info until they change...
What I need to see in this case would be:
Although I dont believe that this would be too difficult in SED or AWK
I am not sure how exactly to approach it...
The actual files contain many more fields than this example.
TIA,
-Allen Moore
Code:
50211,JHMCG5661YC025824,60,LOF,29.95
,,60,BAL,14.95
,,60,ALN,79.95
50212,JHMCG4732XC047827,60,LOF,29.95
etc...
ACCESS database, and the report format does not repeat certain field
info until they change...
What I need to see in this case would be:
Code:
50211,JHMCG5661YC025824,60,LOF,29.95
50211,JHMCG5661YC025824,60,BAL,14.95
50211,JHMCG5661YC025824,60,ALN,79.95
50212,JHMCG4732XC047827,60,LOF,29.95
etc...
I am not sure how exactly to approach it...
The actual files contain many more fields than this example.
TIA,
-Allen Moore