0
고정 열 너비로 Excel로 내보내는 방법에 대해 질문하고 싶습니다. 열의 너비는 문자 길이에 따라 달라 지므로 헤더 값을 기준으로Excel 열 너비
Sub loading()
'
' loading Macro
'
With ActiveSheet.QueryTables.Add(Connection:="TEXT;file-path\text.txt", _
Destination:=Range("A6"))
.Name = "CarSumm"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = xlWindows
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = False
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileOtherDelimiter = "|"
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
.Refresh BackgroundQuery:=False
End With
ActiveWindow.ScrollColumn = 3
ActiveWindow.ScrollColumn = 6
ActiveWindow.ScrollColumn = 9
End Sub
감사합니다. btw. 어디에서 매크로를 추가해야합니까? 새로운 것을 매크로로. 난 그냥 우리의 소스 코드에 사용되는 것들을 복사하여 붙여 넣습니다. – noob