I have an old version of the compiler, 2003H. I have a text file with several hundred records that I need to compare to another file with about 90 records. I figured I would load the second file into an array using ArrayFileGetCSV and then as I read each line of the first file I would search the array for a match to a particular field and return another piece of data from the second file (like vlookup in a spreadsheet program). Problem is I've never used arrays before and can't figure out how to search the array. The only functions I see are to create arrays either from scratch or from a file and to create a file from an array. Any suggestions?