1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

エクセルでUTF-8/UTF-8NのCSVを読み込むときに、『このテキストファイルのデータは、1つのワークシートに入りきりません』と出るときの対処法

Last updated at Posted at 2021-10-15

Summary

エクセルでUTF-8/UTF-8NのCSVを読み込むときに、『このテキストファイルのデータは、1つのワークシートに入りきりません』と出るときの対処法

かなりはまったのでメモ

env.

windows

> ver
Microsoft Windows [Version 10.0.19043.1288]

excel

Microsoft® Excel® 2016 MSO (バージョン 2109 ビルド 16.0.14430.20154) 32 ビット 

CSV

csv is ...
fenc is utf8 or utf8n
ff is unix( LF )

col1,col2,col3
アイスクリーム,a,b

utf8(ef bb bf)
image.png

utf8n
image.png

症状

データ > 外部データの取込み > テキストファイル

にて

CSVが読み込めない

image.png

原因

レコードの最初のフィールドが『アイスクリーム』(日本語)

対処

ダブルクオテーションで囲む

col1,col2,col3
"アイスクリーム",a,b

image.png

現場からは以上です( ´ー`)フゥー...

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?