Hi Team,
I have an FB file as below, consisting of 5 fields - A,B,C,D(YEARMM),E(Amount), delimited by pipe symbol
I need to sum-up amounts and count no of records, for all matching A,B,C,D(YEARMM) and write to a new file having fields- A,B,C,D(YEARMM), accumulated/summarized AMOUNT and no of records having same A,B,C,D.
I/P:
C1AW|1013300 |16L00000 |202201|0001
C1AW|1013300 |16L00000 |202202|0001
C1AW|1013300 |16L00000 |202202|0001
C1AW|1020000 |16L21000 |202112|0001
C1AW|1020000 |16000000 |202103|0001
C1AW|1020000 |16000000 |202103|0002
C1AW|1020000 |16000000 |202106|0001
O/P Expected:
-----------------
C1AW|1013300 |16L00000 |202201|0001|1
C1AW|1013300 |16L00000 |202202|0002|2
C1AW|1020000 |16L21000 |202112|0001|1
C1AW|1020000 |16000000 |202103|0003|2
C1AW|1020000 |16000000 |202106|0001| 1
I can sum-up amounts based on column:A,B,C,D using SUM FIELDS=NONE and use M10 function to count records, having individual steps. But again, i need to merge these individual steps which is inefficient.
Hence i would need your help, can this be done in single step - both summing up and writing count of records based on matched key.
Kindly help.
Thanks a lot,
Naveen S
SUM and count of records by key, using SORT utility
-
- Posts: 21
- Joined: Mon Nov 23, 2009 10:59 am
- Skillset: cobol/jcl/db2/expeditor/spufi
- Referer: Internet and google search
- sergeyken
- Posts: 458
- Joined: Wed Jul 24, 2019 10:12 pm
- Skillset: Assembler, JCL, Utilities, PL/I, C/C++, DB2, SQL, REXX, COBOL, etc. etc. etc.
- Referer: Internet search
Re: SUM and count of records by key, using SORT utility
0. Please, learn how to use the Code button to format your code properly
1. In case you are using DFSORT utility, please read SECTIONS part of the manual (Page 339). No plans do exist to copy parts of the manual to the forum; it can be read from its original location.
2. After reading the manual, try to create a working code, and present it to the forum with your technical questions.
3. Do not create clones of the same topic; ask administrators to move it to the correct forum section.
1. In case you are using DFSORT utility, please read SECTIONS part of the manual (Page 339). No plans do exist to copy parts of the manual to the forum; it can be read from its original location.
2. After reading the manual, try to create a working code, and present it to the forum with your technical questions.
3. Do not create clones of the same topic; ask administrators to move it to the correct forum section.
Javas and Pythons come and go, but JCL and SORT stay forever.
Re: SUM and count of records by key, using SORT utility
Try to use below:
Code: Select all
INREC BUILD=(1,35,C'|1')
SORT FIELDS=(1,31,CH,A)
SUM FIELDS=(32,4,ZD,37,1,ZD)
-
- Similar Topics
- Replies
- Views
- Last post
-
- 3
- 3714
-
by naveenkumar sudha
View the latest post
Mon May 09, 2022 10:15 pm
-
-
SORT the records based on the second word
by seethahexa » Wed Aug 19, 2020 1:30 pm » in DFSORT/ICETOOL/ICEGENER - 1
- 1406
-
by sergeyken
View the latest post
Wed Aug 19, 2020 6:08 pm
-
-
-
Split file, SORT then append records.
by Esmayeelhusen » Fri Aug 04, 2023 6:37 pm » in DFSORT/ICETOOL/ICEGENER - 10
- 5307
-
by Esmayeelhusen
View the latest post
Wed Aug 09, 2023 7:39 am
-
-
-
COBOL SORT - How to sort entire file first & sort by Key
by k_ekam » Thu Dec 01, 2022 12:58 pm » in IBM Cobol - 3
- 1547
-
by Robert Sample
View the latest post
Wed Dec 07, 2022 7:32 am
-
-
-
Insert records from File1 between records of File2
by Daouchiche » Wed Nov 10, 2021 6:37 am » in DFSORT/ICETOOL/ICEGENER - 6
- 2335
-
by sergeyken
View the latest post
Thu Nov 11, 2021 12:43 am
-