Hello oki1811
Your right, Panoramic Basic will not let you Read Data as you have shown. And it get's old typing,
Read a :read b :ect
So I read my Data into a Array with a simple For Next loop, it's fast, easy and simple.
Example
dim h(5),k ,x
label printit
data 10,100,256,1000
x=0
for k=0 to 5
read h(x)
if h(x) = 1000 then goto printit
x=x+1
next k
end
printit:
print h(0)
print h(1)
print h(2)
print h(0),h(1),h(2)
You probably already know all of this, but it's nice to get mail anyway
Have fun
pdx