ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 832|回复: 5

[求助] 转换成TXT

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-9-11 23:15 | 显示全部楼层 |阅读模式
数据转换成TXT文件,谢谢。

转换成TXT.zip

9.06 KB, 下载次数: 11

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-12 13:55 | 显示全部楼层
sub dd()
Open ThisWorkbook.Path & "\data.txt" For Output As #1 '清空TXT内容
  For l = 7 To 100 '从第7行开始到100行
      If Cells(l, 1) <> "" Then '如果7行1列不为空,则运行下面的程序
      '如果7行1列和7行2列和7行3列不为空,则把他们连接输出到TXT
         If Cells(l, 1) <> "" And Cells(l, 2) <> "" And Cells(l, 3) <> "" Then Print #1, Cells(l, 1) & "、(" & Cells(l, 2) & ")" & Cells(l, 3)
         '如果7行4列不为空并且7行4列单元格颜色值等于46则输出到txt
         If Cells(l, 4) <> "" And Cells(l, 4).Interior.ColorIndex = 46 Then Print #1, "A、" & Cells(l, 4)
         If Cells(l, 5) <> "" And Cells(l, 5).Interior.ColorIndex = 46 Then Print #1, "B、" & Cells(l, 5)
         If Cells(l, 6) <> "" And Cells(l, 6).Interior.ColorIndex = 46 Then Print #1, "C、" & Cells(l, 6)
         If Cells(l, 7) <> "" And Cells(l, 7).Interior.ColorIndex = 46 Then Print #1, "D、" & Cells(l, 7)
         If Cells(l, 8) <> "" And Cells(l, 8).Interior.ColorIndex = 46 Then Print #1, "E、" & Cells(l, 8)
         If Cells(l, 9) <> "" And Cells(l, 9).Interior.ColorIndex = 46 Then Print #1, "F、" & Cells(l, 9)
         If Cells(l, 10) <> "" Then Print #1, "正确答案:" & Cells(l, 10)
         Print #1, Chr(10)  '输出结束后加一个换行符
      End If
   Next
   Close #1
end sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-12 13:56 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Open ThisWorkbook.Path & "\data.txt" For Output As #1 '清空TXT内容
  For l = 7 To 100 '从第7行开始到100行
      If Cells(l, 1) <> "" Then '如果7行1列不为空,则运行下面的程序
      '如果7行1列和7行2列和7行3列不为空,则把他们连接输出到TXT
         If Cells(l, 1) <> "" And Cells(l, 2) <> "" And Cells(l, 3) <> "" Then Print #1, Cells(l, 1) & "、(" & Cells(l, 2) & ")" & Cells(l, 3)
         '如果7行4列不为空并且7行4列单元格颜色值等于46则输出到txt
         If Cells(l, 4) <> "" And Cells(l, 4).Interior.ColorIndex = 46 Then Print #1, "A、" & Cells(l, 4)
         If Cells(l, 5) <> "" And Cells(l, 5).Interior.ColorIndex = 46 Then Print #1, "B、" & Cells(l, 5)
         If Cells(l, 6) <> "" And Cells(l, 6).Interior.ColorIndex = 46 Then Print #1, "C、" & Cells(l, 6)
         If Cells(l, 7) <> "" And Cells(l, 7).Interior.ColorIndex = 46 Then Print #1, "D、" & Cells(l, 7)
         If Cells(l, 8) <> "" And Cells(l, 8).Interior.ColorIndex = 46 Then Print #1, "E、" & Cells(l, 8)
         If Cells(l, 9) <> "" And Cells(l, 9).Interior.ColorIndex = 46 Then Print #1, "F、" & Cells(l, 9)
         If Cells(l, 10) <> "" Then Print #1, "正确答案:" & Cells(l, 10)
         Print #1, Chr(10)  '输出结束后加一个换行符
      End If
   Next
   Close #1

TA的精华主题

TA的得分主题

发表于 2018-9-12 14:37 | 显示全部楼层
试试看是不是可以了

Copy of 转换成TXT.zip

16.54 KB, 下载次数: 7

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-12 14:50 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-9-12 15:06 | 显示全部楼层
Option Explicit

Sub test()
  Dim arr, i, j
  arr = Range("a6:j" & Cells(Rows.Count, "c").End(xlUp).Row)
  Open ThisWorkbook.Path & "\abc.txt" For Output As #1
  For i = 2 To UBound(arr, 1)
    Print #1, arr(i, 1) & "、" & "(" & arr(i, 2) & ")" & arr(i, 3)
    For j = 4 To UBound(arr, 2) - 1
      If Len(arr(i, j)) Then
        Print #1, Replace(arr(1, j), "选项", vbNullString) & "." & arr(i, j)
      End If
    Next
    Print #1, "正确答案:" & arr(i, j)
  Next
  Close #1
End Sub

评分

2

查看全部评分

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-14 20:07 , Processed in 0.022614 second(s), 13 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表