looking for a way to stage each record temporarily until a condition with a record is met, then dump that record first and all the remaining records that were stored temporarily once a 2nd condition is met. example input:
record 1
record 2
record 3
member name
record 4
date
desired output:
member name
record 1
record 2
record 3
record 4
date
member name is the first condition to meet, and date is the 'dump all records' trigger... clear as mud?
IF A > B
C = D + 1
END-IF