Sub ReadCSV() With Worksheets("Sheet1") With .QueryTables.Add(Connection:="TEXT;ソースファイルのパス", Destination:=.Range("A1")) .TextFilePlatform = 932 .TextFileCommaDelimiter = True .RefreshStyle = xlOverwriteCells .TextFileColumnDataTypes = Array(xlTextFormat, xlTextFormat, xlTextFormat, xlTextFormat) .Refresh .Delete End With End With End Sub