You really have a lot of options here. The simplest would be to re-save the excel file as a tab-delimited text file. If all the cells are purely numbers, it's really easy - just use the Read From Spreadsheet File.vi in the File I/O pallet to give you a 2D array of values. If it's mixed strings/numbers, you can do a small modification to the same vi to give you a 2D array of strings (attached). You can then parse the array and convert the number strings to numbers.
Now, if you can't convert the file, you need to use ActiveX to gain access to excel. There are plenty of examples around on how to get the data from excel into a LV array. The jist of it is: open app reference, get workbooks object, open workbook, activate sheet (if not default s
heet), get range object (with range of cells needed), get range value, close range object, close workbooks object, quit excel application, close app reference.
Hope this helps.
Dave.
==============================================
