Hello, I'm am working on learning JCL, I have a number of excercies I am working on, but now I've gotten stuck.
I have a data setof the following format:
Location (Column range 1,17)
Year (Column range, 19,4)
Month (Column range 24,2)
Item 1 Sales (Column range 27,7)
Item 2 Sales (Column range 35,7)
I've done the first few exercises and managed to use JCL to sort the data into:
• something that lists each month+year combination and sums up all of the sales
• something that shows the location of the shops and then produces an overall sum of the sales for each month across all the years..
The next thing I am trying to do is to work out what is the best performing location for each month of the year,
I cannot figure out how to code this, because I think I need two sort statements, in one JCL file but I don't know how to do this, and I keep reading the DFSORT getting started guide and I'm not getting anywhere.