Hello, Below is a converted Macro - basically I want to export to a txt file a col of data with a heading of the field name. The heading and field name is always the same 09F20F00F00ROSTER. If I run the code below or macro it works fine except for the quoteds on the heading eg "09F20F00F00ROSTER". Can u please help me modify this code so there are no quotes.
Thanks
Steve
Function macTricoderRstr()
On Error GoTo macTricoderRstr_Err
DoCmd.TransferText acExportFixed, "QryTricoderDownload Export Specification", "qryTricoderDownload", "j:\gate security system\RosterToTricoder.txt", True, ""
macTricoderRstr_Exit:
Exit Function
macTricoderRstr_Err:
MsgBox Error$
Resume macTricoderRstr_Exit
End Function
Thanks
Steve
Function macTricoderRstr()
On Error GoTo macTricoderRstr_Err
DoCmd.TransferText acExportFixed, "QryTricoderDownload Export Specification", "qryTricoderDownload", "j:\gate security system\RosterToTricoder.txt", True, ""
macTricoderRstr_Exit:
Exit Function
macTricoderRstr_Err:
MsgBox Error$
Resume macTricoderRstr_Exit
End Function