strangeryet
Programmer
I want to export the results of a query to a text file, however the query works off a parameter.
How do I feed the line below the parameter?
DoCmd.TransferText acExportFixed, , "qryBreakDownToIndividualRecords", _
"C:\400\NieExport.txt", False, ""
The query looks like this:
SELECT [@RunDate], StartStopDate, RoutNum, 'Mon' AS DayName, NumOfPapers, PermiAction, FunctionADR
FROM tblInput
WHERE Mon = True;
Thanks
How do I feed the line below the parameter?
DoCmd.TransferText acExportFixed, , "qryBreakDownToIndividualRecords", _
"C:\400\NieExport.txt", False, ""
The query looks like this:
SELECT [@RunDate], StartStopDate, RoutNum, 'Mon' AS DayName, NumOfPapers, PermiAction, FunctionADR
FROM tblInput
WHERE Mon = True;
Thanks