This code should be of use.
Apologies for the delay in posting.
DoCmd.TransferSpreadsheet acExport, , "tblSomeTable",
"C:\someFile.xls", 0
Dim mysheet As Object
Dim xlApp As Object
' Set object variable equal to the OLE object.
Set xlApp = CreateObject("Excel.Application"

Set mysheet = xlApp.Workbooks.Open("c:\someFile.xls"

.Sheets(1)
' Put the values in the Excel Cells:
'column 1:
mysheet.Cells(1, 1).Value = ""
mysheet.Cells(2, 1).Value = "asdasda"
mysheet.Cells(3, 1).Value = "asdasda"
mysheet.Cells(4, 1).Value = "asdas"
mysheet.Cells(5, 1).Value = "asdads"
mysheet.Cells(6, 1).Value = "asdas"
mysheet.Cells(7, 1).Value = "asdas"
' sheet, and quit Microsoft Excel.
mysheet.Application.Windows("someFile.xls"

.Visible = True
mysheet.Application.ActiveWorkbook.Save
mysheet.Application.ActiveWorkbook.Close
xlApp.Quit
Shell ("EXCEL.EXE C:\someFile.xls"
' Clear the object variable.
Set mysheet = Nothing
Set xlApp = Nothing
MrPeds