Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: "Field 'F1' Doesn't Exist in Destination Table" Error Message


View products that this article applies to.

Symptoms

When you append data from a delimited text file to an existing table by using a TransferText macro action or a TransferText method in Visual Basic for Applications, you may receive an error message similar to the following:
Run-time error '2391':
Field 'F1' doesn't exist in destination table '<table name>'.

↑ Back to the top


Cause

The first row of the text file does not contain field names; therefore, Microsoft Access assumes the fields are named "F1," "F2," and so on.

↑ Back to the top


Resolution

You can create and use an import specification to identify the fields in the delimited text file.

To create an import specification, follow these steps:
  1. In the Database window, select the table into which to append data using a TransferText macro action or a TransferText method in Visual Basic for Applications.
  2. On the File menu, point to Get External Data, and then click Import.
  3. In the Import dialog box, select Text Files. Locate and select your delimited text file, and then click Import.
  4. In the Import Text Wizard, click Advanced.
  5. In the 'NameOfFile' Import Specification dialog box, type the correct field names for the fields in the Field Name column, and then click Save As. Type a specification name and click OK.
  6. Click OK to close the Specification Name dialog box.
  7. In the Import Text Wizard, click Cancel.
To use the import specification, follow these steps:
  1. Open the macro or Visual Basic procedure containing the TransferText action or method in Design view.
  2. Modify the action or method to include a Specification Name argument. For example:

    In a Macro:
       TransferText Actions
          Transfer Type: Import Delimited
          Specification Name: <specification name>
          Table Name: <table name>
          File Name: <full path>
          Has Field Names: No
    						
    In Visual Basic for Applications:
    DoCmd.TransferText acImportDelim, <specification name>, _
      <table name>, <filename path>, 0
    					

↑ Back to the top


References

For more information about transferring text by using a macro or Visual Basic for Applications, click Microsoft Access Help on the Help menu, type TransferText in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.

↑ Back to the top


Keywords: KB208582, kbprb, kberrmsg

↑ Back to the top

Article Info
Article ID : 208582
Revision : 2
Created on : 7/13/2004
Published on : 7/13/2004
Exists online : False
Views : 369