欢迎访问服务器技术网-www.fuwuqijishu.com

制作可以导出为TXT文档的EXCEL文件

软件 fuwuqijishu 2年前 (2022-10-01) 11次浏览 0个评论 扫描二维码

关于看到一个类似文件,但不是我要的类型,想自己做个,但不知道怎么做?请教高手
我要的是导出后 1| 00008888|张三|888.00|这个样子的。的问题

Sub 按钮1_单击()
Dim i As Integer: Dim arr(0 To 3)
Open ThisWorkbook.Path & “\abc.txt” For Output As #1
Print #1, “序号|卡号|姓名|金额|”
Close #1
Open ThisWorkbook.Path & “\abc.txt” For Append As #1
For i = 2 To [a65536].End(xlUp).Row
For k = 0 To 3
arr(k) = Cells(i, k + 1)
Next k
mystr = Join(arr, “|”) & “|”
Print #1, mystr
Next i
Close #1
End Sub

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2514.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900