Link to home
Start Free TrialLog in
Avatar of Donald Whittemore
Donald WhittemoreFlag for United States of America

asked on

Access 2010 Export Spec

I have a working Access 2010 database.  There is a line of code used to export data.

DoCmd.TransferText acExportDelim, tExport, qry.Name, tPath & "\" & tFileName & ".csv"

tExport resolves to ExportChina.  I cannot find it in the Saved Exports panel. That panel is empty.

In the MSysIMEXSpecs table there is an entry for ExportChina.  In the MsysIMEXColumns there are rows that refer to the ID for ExportCHina.

I have added 4 new fields to the table being exported.  But the export only gives me the original fields, not the new ones.  

I suppose I can edit the MsysIMEXColumns table to include the new fields but I assume there is a better way.

I have seen a suggestion to just go thru the Export Text FIle process and save it as the same name as the current one.  I do that but it does not say a current export exists. It creates one that then shows up in the Saved Exports panel but MsysIMEXColumns is not changed.
Avatar of Emil_Gray
Emil_Gray
Flag of United States of America image

It has been a very long time since I messed with this sort of question but I'll give it a go here. You can consider this a wild guess. I certainly would.

DoCmd.TransferText acExportDelim, Chr$(34) & tExport & Chr$(34), Chr$(34) & qry.Name & Chr$(34), tPath & "\" & tFileName & ".csv"
ASKER CERTIFIED SOLUTION
Avatar of PatHartman
PatHartman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
That never occurred to me still it might be possible that a created Export Spec also should be delineated with quotes. Like I said it has been a very long time since I delved into solving one of these little puzzles.
Avatar of Donald Whittemore

ASKER

The DoCmd was working fine.  Just did not include the 4 new fields.  Tried creating a new, same named, export using the ribbon Text File Export option. It did not change the MsysIMEXColumns table.

PatHartman had the answer.  Thanks.
I'm glad you got it figured out.