def var cList as char no-undo.
assign cList = "one,two,three,four".
<Loop> cList
logic...
</Loop>
What's the best way to loop through a comma delimited list in a char variable so that in this example I would get one then two then three then four.
NUM-ENTRIES
function isn't in-lined in the repeat statement? Something to do with it having to be evaluated each iteration through the loop? – Serg