Ok, I understand the ubound deal now. NTDOC, I appreciate the support as well as everyone's response even though I might not understand it.

Regarding my other issue, how do I sum up all of the numbers in csv_array[66]? The script below is correctly grabbing all of the lines in the file and the correct data, but I can't find an "add" function.

 Code:
$csv="C:\temp\test.csv"
Open(3,$csv) = 0
$read=ReadLine(3)
While Not @ERROR
$read=ReadLine(3)
$csv_array=Split($read,"|")
If UBound($csv_array)
? "Account:  " + $csv_array[5] + "   Balance:   " + $csv_array[66]
Else
	EndIf
Loop

$read = Close(3)


Along these same lines, is there some way to count the number of lines that readline goes through?

Thanks.