Hi everyone and advance thanks for those would help. Here's my script, p.csv is a multi row/line file. I get the error "array reference out of bounds!" after it has read the whole file.

- - - - - - - - - - -
Dim $Line[39]
If Open(1,"p.csv",2) = 0

WHILE @ERROR = 0
$Line = Split(readline(1),",")
? $Line[0] + $Line[3] + $Line[19] + $Line[21]
LOOP

endif