Apr 9, 2001 #1 johnnyjj Programmer Joined Apr 9, 2001 Messages 3 Location 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 Joined Sep 1, 2000 Messages 11 Location 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.