put a label before your DATAs, like this:
@LABELNAME DATA "B",10000,"etc." DATA ... ...then use RESTORE @labelName to start reading the DATA at that label: use READ variableName to read a single value from the DATA (you'll probably put it in some kind of loop) you can also READ multiple values at once, like: READ firstVariable, secondVariable, ...