Thanks for the help. I couldn't get the CSV function to work properly, however, I played around with readline and I think I got that to work ok (as far as reading the data). Or do I need to use the CSV function? Here's the latest script:
 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)>=3
? "Account:  " + $csv_array[5] + "   Balance:   " + $csv_array[66]
Else
	EndIf
Loop
$read = Close(3)

This script now outputs the account and balance fields for each line in the file. However, I'm stuck now with how to sum all of the balances in $csv_array[66]. How do I do that?

Also, I was getting the "array is out of bounds" error until I added the UBound line that I found searching this forum. Even though it fixed the problem, I'm not really sure what this command does or when to use it. Can someone explain that to me?