Try the following
code_sections.1 = RIGHT(100,8,'0') || 'Section 100'
code_sections.2 = RIGHT(120,8,'0') || 'Section 120'
code_sections.3 = RIGHT(80,8,'0') || 'Section 80'
code_sections.0 = 3
SORT down code_sections. a +8
DO i = 1 TO 3
SAY code_sections.i
END
Without the DOWN it works, with the DOWN it fails. Can't se that I'm doing anything wrong |