Share via

Issues Importing Exported Google Contacts .csv into New Access Table

James 125 Reputation points
2026-03-17T16:34:16.19+00:00

When I try to import a exported Google contacts .csv the 'Name' column ends up being split-up into'First name', 'Middle name' and 'Last name.'

For instance:

First Name: Middle Name: Last name
Google Technical Support

It doesn't occur with ever contact.

How can I merge these columns or prevent the export from doing this??

James

Microsoft 365 and Office | Access | For home | Windows

5 answers

Sort by: Most helpful
  1. James 125 Reputation points
    2026-03-26T12:29:30+00:00

    I exported my Thunderbird's Address Book to a csv and imported into an Access table.

    It worked great! There were a few anomalies. But it took me no time at all to fix them.

    The export put the name into a 'Display Name' column, and it worked out nice.


  2. James 125 Reputation points
    2026-03-19T15:55:14.25+00:00

    I found that if I remove the commas after the name and any coma separating the name into three Access then regards it as one field.

    But it would be a pain doing this to nearly 194 rows.

    Access_CSV


  3. Duane Hookom 26,710 Reputation points Volunteer Moderator
    2026-03-17T17:03:40.4966667+00:00

    Names should always be stored in three fields. You can always concatenate them where needed or, run an update query to populate an undesirable field.


  4. James 125 Reputation points
    2026-03-17T16:54:16+00:00

    I don't have excel.

    0 comments No comments

  5. Q&A Assist
    2026-03-17T16:34:28.5633333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The Google export is not doing anything wrong here; it is Access interpreting the CSV and mapping the “Name” data into separate First/Middle/Last name fields based on delimiters in the file. To handle this, there are two practical approaches: clean the CSV before import, or adjust how the data is imported/mapped.

    Since the context focuses on CSV import behavior and fixing import issues, the safest supported pattern is:

    1. Open and inspect the CSV in Excel
      1. Locate the exported contacts CSV file from Google (typically contacts.csv).
      2. Open it in Excel.
      3. Confirm which column(s) contain the full name and how they are separated (spaces, commas, etc.).
    2. Normalize the name into a single column in Excel
      1. If Google exported separate columns (e.g., Given Name, Additional Name, Family Name), insert a new column such as FullName.
      2. Use a formula to concatenate them into one field, for example:
        • =TRIM(A2 & " " & B2 & " " & C2)
      3. Copy the formula down for all rows.
      4. Convert the formulas to values (Copy → Paste Special → Values) so the CSV contains plain text.
      5. Delete the original separate name columns if not needed.
    3. Save correctly as CSV
      1. Save the file as CSV.
      2. When Excel prompts “are you sure you want to save it in CSV format?”, choose Yes each time so the CSV structure is preserved.
    4. Import into Access using the cleaned CSV
      1. In Access, import this edited CSV into a new table.
      2. Map the FullName column to a single text field (e.g., Name) in the Access table.

    This approach prevents Access from splitting the name into First/Middle/Last because the CSV now has a single, already-merged name column. If some rows still split differently, check those specific rows in Excel for extra delimiters or formatting and correct them before re-importing.


    References:


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.