Sub test()
Dim i As Long
Set ae = CreateObject("excel.application")
ae.workbooks.Open CurrentProject.Path & "/t.xls"
ae.Visible = True
With ae.activeworkbook
' For i = 1 To ae.range("a65536").end(xlup).row
For i = 1 To 15
Debug.Print ae.cells(i, 1).Value
Next i
End With
End Sub