Hi I am using this code for transfering a query results to excel:
Actually What I want is that the three colums I do export : Student Name / Phone / birthday should be formated like Text / Number / Date/Private Sub SEND_ACQ_Click()
Dim Filename As String
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel12xml, "S_EXPORT", "C:\users\**\S_EXPORT.xlsx", True
MsgBox " table created" & vbCrLf _
& "FILE SAVED " & vbCrLf, vbYes + vbInformation, " - SUCCESSFULLY CREATED"
End Sub
So I want have the famous erro number stored as text.
Any ideas are appreciated
Webisti