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

ID: Q208582


The information in this article applies to:


SYMPTOMS

Advanced: Requires expert coding, interoperability, and multiuser skills.

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>'.


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.


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:


  3. 
    DoCmd.TransferText acImportDelim, <specification name>, _
      <table name>, <filename path>, 0 


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.

Additional query words: prb


Keywords          : kberrmsg kbdta IsmTxtd 
Version           : WINDOWS:2000
Platform          : WINDOWS 
Issue type        : kbprb 

Last Reviewed: May 13, 1999