Dear ,
To open excel from
vb u can use the following code
Dim xcell As String
Dim xl As Object 'To open Excel
Set xl = CreateObject("Excel.application") 'Creates an object
xcell = App.Path & "\test.xls"
xl.Application.Workbooks.Open xcell, , True
xl.Visible = True ' So you can see Excel
'this how a cell reference should be given with this you can write and read from specified cell
xl.Application.Worksheets("sheet1").Cells(6, 8).Value = "TEST"
'in the above line cells(6-is column,8-is rows)