|
目的
文字化けするデータ(システムからダウンロードしたエクセル(CSV)
を文字化けしないようにマクロを組みたい。
データの取り込み方法
エクセルのデータタブ
テキストファイル→ダウンロードしたいフォルダ→ファイル名
→元のデータの形式 カンマや〜を選択→カンマにチェック→
全部の列を文字列に形式変更→A1にデータを返す
この流れをどのPCでもマクロが作動するようにしたい。
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;C:\Users\社員コード\Desktop\チャンプダウンロード\NEW.CSV", Destination:=Range("$A$2") _
)
.Name = "NEW"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 65001
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = True
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, _
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 _
, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
ActiveWindow.Zoom = 80
ActiveWindow.SmallScroll Down:=-9
Range("A1").Select
End Sub
|
|