Page 2 of 2 FirstFirst 12
Results 16 to 17 of 17
  1. #16
    ssanfu is offline Master of Nothing
    Windows XP Access 2000
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    approx 1million records
    Yes, that might take a while.

  2. #17
    ssanfu is offline Master of Nothing
    Windows XP Access 2000
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    I just ran a test using the 5 records you provided.

    Try this in a test dB..

    I imported the CSV file to a table named "tmp". There was a field created in the tmp table named "Field1", type "Text"


    I created a table named "Table1" with a field named "thousands", type "Number - Double"
    Then I created a query:
    Code:
    INSERT INTO Table1 ( thousands )
    SELECT Replace(Field1,' ',',') AS Expr1
    FROM tmp;
    I had to type this in the SQL editor

    It imported the records from the tmp table to Table1 - no errors (5 records).
    Don't know how this will work with the full dataset... but it is worth a try....

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Import Excel file based on a date and time in file name
    By nhylan in forum Import/Export Data
    Replies: 4
    Last Post: 04-16-2013, 03:26 PM
  2. Import Errors - Fields with Numbers and Letters
    By Eekers in forum Import/Export Data
    Replies: 5
    Last Post: 01-10-2012, 02:52 PM
  3. Replies: 1
    Last Post: 11-29-2011, 08:43 AM
  4. Decimal seperator between different languages
    By seshan in forum Programming
    Replies: 3
    Last Post: 01-31-2010, 03:03 PM
  5. Replies: 3
    Last Post: 01-15-2010, 02:28 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums