Help

Issue with CSV import with regards to certain characters

Topic Labels: ImportingExporting
6546 12
cancel
Showing results for 
Search instead for 
Did you mean: 
aadit_bimbhet
4 - Data Explorer
4 - Data Explorer

Hi,

I’m trying to import data from CSV into Airtable. This data is a product catalog that I want to import into Airtable to manage it there going forward. But upon uploading, I’m seeing this � character appearing in some data points and not sure why this is happening and how to fix it. Would appreciate any advice.

For example, data in my csv file is exactly as per the below:
“…A lazy isle to which nature has given singular trees, savory fruits, men with bodies vigorous and slender, and women in whose eyes shines a startling candor…” - (baudelaire, les fleurs du mal, parfum exotique, 5-8)

What’s appearing in Airtable after importing the file is:
��A lazy isle to which nature has given singular trees, savory fruits, men with bodies vigorous and slender, and women in whose eyes shines a startling candor�� - (baudelaire, les fleurs du mal, parfum exotique, 5-8)

Another example, this is a line I am importing:
Invented by scientists during 35 years of research, StriVectin’s proprietary NIA-114 technology

And this is what is appearing in Airtable:
Invented by scientists during 35 years of research, StriVectin�s proprietary NIA-114 technology

Thanks!

12 Replies 12
M_k
11 - Venus
11 - Venus

Hi

I am new to Airtable Comminity, but I have been reading a lot of the posts and I did a search with the keywords: “CSV import and characters” in the search engine and there are a list of other postings with similar issues.

It might help you to get started and perhaps someone with more experience with this issue, can point you in the right direction.

Sorry, that I was not more helpful, but I hope the above reply will be somewhat useful.

Thank you,
MK

What you are seeing suggests a problem exists (most likely) with the encoding of the product catalog data. The � character is the Unicode replacement character, used as a place-holder when an application detects an invalid character encoding in the datastream. Here, it appears whatever created the product catalog used a non-standard encoding for double and single curly (probably) quotes and for the horizontal ellipsis. You can clean up your source data using something like sed or a programming editor. (If you’re on Windows, I swear by Notepad++ because of its ability to wrangle very large files with little sweat and without introducing unintentional modifications.) Alternatively, you might be able to tweak your browser’s encoding settings — but I’m not certain doing would have any effect on the Airtable routine handling data importation.

I am having the same problem. I have a large .xlsm file that I want to import to AT. I save the relevant worksheet to a csv file using Excel 2007 on a Windows 10 machine. When I import the sheet to AT, text fields have a lot unicode error symbols. Excel allows different save as options in terms of the CSV types (msdos, mac) and I’ve tried them all to no avail. I suspect that the text I copied and pasted from the web has something embedded that I don’t see. Any suggestions so I don’t have to retype every entry? Tnx.

Sorry, no idea, as I’ve not had this problem myself. (I’m dealing with a customer base that contains some replacement characters, but only in data already populated when I received it.) Typically, when I see it, it’s usually some sort of punctuation glitch that appears in regularly repeating and presumably search-and-replaceable phrases. If that’s the case with your dataset, I’d suggest pulling the CSV into a reasonably clean file editor (not a word processor) and replacing the offending code with an encoding-friendly equivalent. (Once against I recommend Notepad++.)

If that isn’t the case — if you indeed believe you have non-displaying embedded characters — my suggested solution is, surprise, Notepad++. Install the 32-bit version and the hexeditor plugin (hexed doesn’t work with 64-bit NPP); this should let you examine the CSV at the byte level, revealing what hidden characters you’ll need to search-and-replace. (Another recommended tool for byte-level examination is Frhed, the Free Hex-editor. It can’t perform edits as easily as NPP, but, IIRC, Frhed allowed me to discover Airtable was embedding double-quotes around certain copy-and-pasted fields that even NPP kept hidden. It also allowed me to examine the mysterious three-byte value \0xef\0xbb\0xbf a user was complaining about in data exported from Airtable; another side-effect of mismatched encodings, it proved to be a byte order mark which, although valid in UTF-8 encoded files, often trips up apps not expecting it…

tony_bobbitt
4 - Data Explorer
4 - Data Explorer

FYI, I had the same problems and tried saving the csv file in other formats offered, saving as a csv utf-8 file vs the I suppose standard just CSV and other options and it uploaded without issue.

nikolaibogdanov
4 - Data Explorer
4 - Data Explorer

Just in case it’s useful to anyone still wrestling, I was having the same formatting problems when saving my spreadsheet in Excel as a .CSV file and importing to Airtable. Then I noticed you can import from Google Sheets - so I created a Google Sheet with the same data, saved it as .CSV and then uploaded that sheet to Airtable via the block. Worked a treat, no formatting nightmares - basically, I avoided using Excel. HTH.

VERY HELPFUL. Thank you so much!!

Joss
4 - Data Explorer
4 - Data Explorer

Two years later, the problem still exists.

I’ve tried to import some csv files from Google Sheets but still have many encoding issues with �� characters in the imported tables

You can repeat the the bug yourself, the csv example is attached

2020-09-30_21h11_04

изображение

Super! It really helped me to workaround!
That is probably the problem with MS word converting file into .CSV

No, it’s airtable issue. Supports answered that they don’t support any non English languages.

Andres_Hidalgo
5 - Automation Enthusiast
5 - Automation Enthusiast

If you have R installed you can change the encoding with this code

df <- read.csv2("Your File's Directory.csv")

write.csv(df, "Your New File's name.csv", fileEncoding = "UTF-8")

It should now import without any issue

Eduardo_Sayer
4 - Data Explorer
4 - Data Explorer

Sin título
Debes guardar tu CSV en Excel como CSV UTF-8