Hi Sam,
Copy the following VB code into a module in MS Access. It will create an instance of Excel, create a new workbook and insert a simple formula into cell A1 of the new workbook:
Sub AccessToExcel()
Dim xlApp As Object
' Start Excel application...
Set xlApp = CreateObject("Excel.Application")
' Make Excel visible to user...
xlApp.Application.Visible = True
' Open new Excel workbook...
xlApp.Workbooks.Add
' Set relevant worksheet in workbook
xlApp.ActiveWorkbook.Worksheets(1).Activate
' Select cell in workbook
xlApp.ActiveSheet.Range("A1").Select
' Insert formula into active cell...
xlApp.ActiveCell.Formula = "=B1+C1"
End Sub
Hope this helps,
theDude
Bookmarks