作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想与 SAP 进行交易,我使用 csv 文件作为导出文件,但最后我想删除该文件的内容而不删除文件本身。删除内容即可。
Sub OpenCSVFile()
'
' Load the CSV extract
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;" & fpath & "\" & ffilename, Destination:=Range("$A$1"))
.Name = "text"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 850
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileOtherDelimiter = "|"
.TextFileColumnDataTypes = Array(1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
With ActiveSheet
.Columns(1).EntireColumn.Delete 'delete first column
.Rows("1:7").EntireRow.Delete 'delete first 7 rows
End With
End Sub
最佳答案
Sub ClearContents()
Open "C:\Users\Username\Desktop\test1.csv" For Output As #1: Close #1
MsgBox "Clear complete"
End Sub
只需将文件路径更改为 csv 文件所在的位置即可。
关于excel - 如何用vba删除一个txt文件的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56669947/
我是一名优秀的程序员,十分优秀!