Apr 9, 2001 #1 johnnyjj Programmer Apr 9, 2001 3 US If my input data has blank fields how do I use the sort to not use those records?
Apr 9, 2001 #2 turnipman Programmer Sep 1, 2000 11 US Assuming you are doing an internal sort, use an IF statement and don't RELEASE these records to the sort. IF CHECK-FIELD = SPACES NEXT SENTENCE ELSE RELEASE SORT-RECORD. Upvote 0 Downvote
Assuming you are doing an internal sort, use an IF statement and don't RELEASE these records to the sort. IF CHECK-FIELD = SPACES NEXT SENTENCE ELSE RELEASE SORT-RECORD.