I have a .csv file that has 100 rows and 8 columns. Each row looks like something below
0,0,0,0,0,0,0,5
0,1,0,0,1,0,0,6
I need to evaluate each field. If the field = 1 (between rows 1 and 7), I have to write the 8th column value for that row to a text box, if the field = 0 write nothing for that row.
I am very confused on how to evaluate each field.

Dim aryFileData(100, 8) As Integer, then reading your data into it. If you are asking how to do it, you need to make an effort first. What do you have, or where are you having trouble? – jac Jan 10 at 21:41