You can use MS automation as follows:<br>
<br>
Select the References option under Project and add<br>
the MS Excel 8.0 Object Library.<br>
Then try the following code in your app.<br>
<br>
'I have this within a command button.<br>
<br>
'----Begin<br>
Dim MyXL As New Excel.Application<br>
<br>
MyXL.Workbooks.Open (App.Path + "\test.xls"

<br>
' Where test.xls is your spreadsheet to get data from<br>
<br>
Worksheets("sheet1"

.Activate<br>
Worksheets("sheet1"

.Range("A1"

.Activate<br>
<br>
' Where sheet1 is the sheet containing your data and<br>
' Cell A1 is the cell you want data from.<br>
<br>
MsgBox ActiveCell.Value<br>
' Displays in a msgbox<br>
<br>
MyXL.Workbooks.Close<br>
<br>
Set MyXL = Nothing<br>
' --- End