Private Sub YourButton_Click()
Dim XL, XLW, I
Dim rs As DAO.Recordset
Set XL = CreateObject("Excel.Application.9")
Set XLW = XL.Workbooks.Open("C:\TEST.xls") 'The Path and Name of your workbook
XL.Visible = True
Set rs = CurrentDb.OpenRecordset("tblOutput") 'The table or query to output
XLW.Sheets("sheet1").Select 'The sheet Name of your workbook
I = 2
rs.MoveFirst
Do Until rs.EOF
XLW.Application.Cells(I, 1).Value = rs.Fields("ID") 'Here's where you put the field Names
I = I + 1
XLW.Application.Cells(I, 1).Value = rs.Fields("Field1")
I = I + 1
XLW.Application.Cells(I, 1).Value = rs.Fields("Field2")
I = I + 1
XLW.Application.Cells(I, 1).Value = rs.Fields("Field3")
I = I + 1
XLW.Application.Cells(I, 1).Value = rs.Fields("Field4")
I = I + 1
XLW.Application.Cells(I, 1).Value = rs.Fields("Field5")
I = I + 1
rs.MoveNext
I = I + 1
Loop
rs.Close
Set rs = Nothing
Set XL = Nothing
Set XLW = Nothing
End Sub