gpt4 book ai didi

vba - 如何使用 VBA 宏编辑器读取文本 (.txt) 文件并将数据放入 Excel 2016 文档中?

转载 作者:行者123 更新时间:2023-12-03 03:39:22 26 4
gpt4 key购买 nike

我需要阅读以下文本文档(参见第一张图片):Text document image

并按照如图所示的方式将数据放入 Excel 文档中(参见第二张图): Excel document image

我想使用 Excel VBA 宏来执行此操作,但我对如何执行此操作一无所知。我对 excel VBA 非常陌生,完全不知道从哪里开始。

最佳答案

使用以下子程序。

Sub txtImport()
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;C:\Users\HARUN\Documents\Test.txt", Destination:=Range("$A$1"))
.Name = "Test"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 437
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = True
.TextFileTabDelimiter = False
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = True
.TextFileColumnDataTypes = Array(1, 1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With

关于vba - 如何使用 VBA 宏编辑器读取文本 (.txt) 文件并将数据放入 Excel 2016 文档中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42523896/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com